Sha256: 5099a571faab70c7579f2b28689570d38c9d23f4c71f880f5bb772f720e90216
Contents?: true
Size: 665 Bytes
Versions: 73
Compression:
Stored size: 665 Bytes
Contents
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; });
Version data entries
73 entries across 73 versions & 7 rubygems