Files
old-experiments/backend/wordpress/wp-content/plugins/woocommerce-jetpack/includes/js/wcj-checkout-custom-fields.js
2018-06-29 14:40:28 +02:00

16 lines
486 B
JavaScript
Executable File

/**
* wcj-checkout-custom-fields.
*
* @version 3.6.0
* @since 3.2.0
*/
jQuery(document).ready(function() {
for (var i = 0, len = wcj_checkout_custom_fields.select2_fields.length; i < len; i++) {
jQuery("#"+wcj_checkout_custom_fields.select2_fields[i].field_id).select2({
minimumInputLength: wcj_checkout_custom_fields.select2_fields[i].minimumInputLength,
maximumInputLength: wcj_checkout_custom_fields.select2_fields[i].maximumInputLength,
});
}
});