mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-09 14:50:57 +00:00
Specify jsdoc type for jQuery parameter
This commit is contained in:
parent
f91b4af950
commit
aeb4e384b6
@ -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,
|
||||||
|
Loading…
Reference in New Issue
Block a user