6 lines
305 B
JavaScript
6 lines
305 B
JavaScript
|
jQuery(document).ready(function($) {
|
||
|
|
||
|
// Fix Chosen for RTL
|
||
|
$('.chosen_select, .chosen_select_nostd, .woocommerce_attributes select.multiselect, select.country_select, select.state_select, select#dropdown_shop_coupon_type, select[name=m], select#dropdown_shop_order_status').addClass('chosen-rtl');
|
||
|
|
||
|
});
|