//= require alchemy/solidus/admin/select2_config $.fn.alchemyTaxonSelect = function(options) { var config = Alchemy.Solidus.getSelect2Config(options) this.select2($.extend(true, config, { ajax: { data: function(term, page) { return { q: $.extend({ name_cont: term }, options.query_params), page: page } }, results: function(data, page) { return { results: data.taxons.map(function(taxon) { return { id: taxon.id, text: taxon.name } }), more: page * data.per_page < data.total_count } } }, formatSelection: function(taxon) { return taxon.text || taxon.name } })) }