File "by_featured.js"

Full Path: /home/vantageo/public_html/cache/cache/.wp-cli/wp-content/plugins/woocommerce-products-filter/ext/by_featured/js/by_featured.js
File size: 1.63 KB
MIME-type: text/plain
Charset: utf-8

"use strict";

function woof_init_featured() {

    if (icheck_skin != 'none') {

        jQuery('.woof_checkbox_featured').iCheck({
            checkboxClass: 'icheckbox_' + icheck_skin.skin + '-' + icheck_skin.color,
        });

        jQuery('.woof_checkbox_featured').on('ifChecked', function (event) {
            jQuery(this).attr("checked", true);
            woof_current_values.product_visibility = 'featured';
            woof_ajax_page_num = 1;
            if (woof_autosubmit) {
                woof_submit_link(woof_get_submit_link());
            }
        });

        jQuery('.woof_checkbox_featured').on('ifUnchecked', function (event) {
            jQuery(this).attr("checked", false);
            delete woof_current_values.product_visibility;
            woof_ajax_page_num = 1;
            if (woof_autosubmit) {
                woof_submit_link(woof_get_submit_link());
            }
        });

    } else {
        jQuery('.woof_checkbox_featured').on('change', function (event) {
            if (jQuery(this).is(':checked')) {
                jQuery(this).attr("checked", true);
                woof_current_values.product_visibility = 'featured';
                woof_ajax_page_num = 1;
                if (woof_autosubmit) {
                    woof_submit_link(woof_get_submit_link());
                }
            } else {
                jQuery(this).attr("checked", false);
                delete woof_current_values.product_visibility;
                woof_ajax_page_num = 1;
                if (woof_autosubmit) {
                    woof_submit_link(woof_get_submit_link());
                }
            }
        });
    }
}