mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-21 12:25:11 +00:00
Specify jsdoc type for jQuery parameter
This commit is contained in:
parent
f91b4af950
commit
aeb4e384b6
@ -19,23 +19,25 @@
|
||||
// Browser globals
|
||||
factory(jQuery);
|
||||
}
|
||||
})(function ($) {
|
||||
})(
|
||||
/**
|
||||
* @param {jQuery} $
|
||||
*/
|
||||
function ($) {
|
||||
'use strict';
|
||||
|
||||
var utils = (function () {
|
||||
return {
|
||||
escapeRegExChars: function (value) {
|
||||
return value.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&');
|
||||
},
|
||||
createNode: function (containerClass) {
|
||||
var div = document.createElement('div');
|
||||
div.className = containerClass;
|
||||
div.style.position = 'absolute';
|
||||
div.style.display = 'none';
|
||||
return div;
|
||||
},
|
||||
};
|
||||
})(),
|
||||
var utils = {
|
||||
escapeRegExChars: function (value) {
|
||||
return value.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&');
|
||||
},
|
||||
createNode: function (containerClass) {
|
||||
var div = document.createElement('div');
|
||||
div.className = containerClass;
|
||||
div.style.position = 'absolute';
|
||||
div.style.display = 'none';
|
||||
return div;
|
||||
},
|
||||
},
|
||||
keys = {
|
||||
ESC: 27,
|
||||
TAB: 9,
|
||||
|
Loading…
Reference in New Issue
Block a user