lubuntu.me/themes/fruitful/inc/js/custom.customize.js
2016-11-28 21:52:15 -08:00

15 lines
372 B
JavaScript

jQuery(document).ready(function() {
jQuery('input[type=checkbox]').ezMark();
if (document.body.clientWidth > 580){
jQuery('select').styler();
}
jQuery('.customize-control input[type=checkbox]').each(function() {
check_val = jQuery(this).val();
if (check_val == 'off') {
jQuery(this).parent('.ez-checkbox').removeClass('ez-checked');
}
});
});