Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/yandex.market/lib/select2/ |
Upload File : |
(function($, window) { $.fn.select2.amd.define('select2/data/search', [ './array', '../utils', 'jquery' ], function(ArrayAdapter, Utils, $) { function SearchAdapter ($element, options) { this.searchVariants = options.get('data'); options.set('data', null); // reset data for skip inside array SearchAdapter.__super__.constructor.call(this, $element, options); } Utils.Extend(SearchAdapter, ArrayAdapter); SearchAdapter.prototype.query = function (params, callback) { var data = []; var self = this; var term = params.term || ''; if (term.length > 0) { if (typeof this.searchVariants === 'function') { this.searchVariants = this.searchVariants(); } this.searchVariants.forEach(function (option) { var matches = self.matches(params, option); if (matches !== null) { data.push(matches); } }); } callback({ results: data }); }; return SearchAdapter; }); })(jQuery, window);