File: /www/wwwroot/www.cytocare.cn/wp-content/plugins/customer-reviews-woocommerce/js/admin-categories.js
jQuery(document).ready(function() {
jQuery('.cr-product-feed-categories-select').select2({
placeholder: CrProductFeedStrings.select_category,
allowClear: true,
ajax: {
url: ajaxurl,
dataType: 'json',
data: function (params) {
return {
q: params.term,
action: 'cr_google_categories'
};
},
processResults: function( data ) {
return {
results: JSON.parse(data)
};
},
cache: true
},
minimumInputLength: 2,
width: '100%'
});
jQuery('.cr-product-feed-identifiers-select').select2({
placeholder: CrProductFeedStrings.select_field,
allowClear: true,
width: '100%'
});
});