2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-09-19 08:49:01 +00:00

Specify jsdoc type for jQuery parameter

This commit is contained in:
Tomas Kirda 2023-10-10 19:28:12 -05:00
parent f91b4af950
commit aeb4e384b6

View File

@ -19,11 +19,14 @@
// Browser globals // Browser globals
factory(jQuery); factory(jQuery);
} }
})(function ($) { })(
/**
* @param {jQuery} $
*/
function ($) {
'use strict'; 'use strict';
var utils = (function () { var utils = {
return {
escapeRegExChars: function (value) { escapeRegExChars: function (value) {
return value.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&'); return value.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&');
}, },
@ -34,8 +37,7 @@
div.style.display = 'none'; div.style.display = 'none';
return div; return div;
}, },
}; },
})(),
keys = { keys = {
ESC: 27, ESC: 27,
TAB: 9, TAB: 9,