Sha256: a83f870b5cac9b315e0eb48f1ecb5a54789f75e796d583cc932f114108762e60
Contents?: true
Size: 1.13 KB
Versions: 23
Compression:
Stored size: 1.13 KB
Contents
$(document).ready(function () { 'use strict'; function formatOptionType(option_type) { return Select2.util.escapeMarkup(option_type.presentation + ' (' + option_type.name + ')'); } if ($('#product_option_type_ids').length > 0) { $('#product_option_type_ids').select2({ placeholder: Spree.translations.option_type_placeholder, multiple: true, initSelection: function (element, callback) { var url = Spree.url(Spree.routes.option_type_search, { ids: element.val(), token: Spree.api_key }); return $.getJSON(url, null, function (data) { return callback(data); }); }, ajax: { url: Spree.routes.option_type_search, quietMillis: 200, datatype: 'json', data: function (term) { return { q: { name_cont: term }, token: Spree.api_key }; }, results: function (data) { return { results: data }; } }, formatResult: formatOptionType, formatSelection: formatOptionType }); } });
Version data entries
23 entries across 23 versions & 1 rubygems