mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 17:24:26 +00:00
c20eb72285
Close #23803 More details in the comment. ![image](https://user-images.githubusercontent.com/2114189/228728786-7ec942b0-1f21-432d-93eb-575c77508b14.png) ![image](https://user-images.githubusercontent.com/2114189/228728825-62afb85e-7bfb-4702-a8bc-6c2160429978.png)
26 lines
1.2 KiB
JavaScript
26 lines
1.2 KiB
JavaScript
import $ from 'jquery';
|
|
import {initAriaCheckboxPatch} from './aria/checkbox.js';
|
|
import {initAriaDropdownPatch} from './aria/dropdown.js';
|
|
import {svg} from '../svg.js';
|
|
|
|
export function initGiteaFomantic() {
|
|
// Silence fomantic's error logging when tabs are used without a target content element
|
|
$.fn.tab.settings.silent = true;
|
|
// Disable the behavior of fomantic to toggle the checkbox when you press enter on a checkbox element.
|
|
$.fn.checkbox.settings.enableEnterKey = false;
|
|
|
|
// By default, use "exact match" for full text search
|
|
$.fn.dropdown.settings.fullTextSearch = 'exact';
|
|
// Do not use "cursor: pointer" for dropdown labels
|
|
$.fn.dropdown.settings.className.label += ' gt-cursor-default';
|
|
// Always use Gitea's SVG icons
|
|
$.fn.dropdown.settings.templates.label = function(_value, text, preserveHTML, className) {
|
|
const escape = $.fn.dropdown.settings.templates.escape;
|
|
return escape(text, preserveHTML) + svg('octicon-x', 16, `${className.delete} icon`);
|
|
};
|
|
|
|
// Use the patches to improve accessibility, these patches are designed to be as independent as possible, make it easy to modify or remove in the future.
|
|
initAriaCheckboxPatch();
|
|
initAriaDropdownPatch();
|
|
}
|