/home/techb158/workloadmatch.com/bower_components/select2/src/js/select2/compat
NameSizeModeActions
containerCss.js14550777editdlrm
dropdownCss.js14230777editdlrm
initSelection.js11210777editdlrm
inputData.js29570777editdlrm
matcher.js9550777editdlrm
query.js6650777editdlrm
utils.js9710777editdlrm
Edit: /home/techb158/workloadmatch.com/bower_components/select2/src/js/select2/compat/query.js (665B)
define([ ], function () { function Query (decorated, $element, options) { if (options.get('debug') && window.console && console.warn) { console.warn( 'Select2: The `query` option has been deprecated in favor of a ' + 'custom data adapter that overrides the `query` method. Support ' + 'will be removed for the `query` option in future versions of ' + 'Select2.' ); } decorated.call(this, $element, options); } Query.prototype.query = function (_, params, callback) { params.callback = callback; var query = this.options.get('query'); query.call(null, params); }; return Query; });