Switch to module init function pattern

This commit is contained in:
Cohee
2024-10-18 12:17:30 +00:00
parent a80741a20e
commit e2a09ad5a7
5 changed files with 17 additions and 14 deletions

View File

@ -49,6 +49,6 @@ function removeHighlighting() {
$('.highlighted').removeClass('highlighted'); // Remove CSS class from previously highlighted elements
}
jQuery(() => {
export function initSettingsSearch() {
$('#settingsSearch').on('input change', searchSettings);
});
}