ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "active-widget.js"

Full Path: /home/zcziejy/ryadselyen/plugins/chaty/src/components/active-widget.js
File size: 736 bytes
MIME-type: text/plain
Charset: utf-8

const $ = window.jQuery;
export default function activeWidgetHandler( button = null ) {
    if($('#active_widget').length) {
        const $triggerBlockWrapper  = $('.trigger-block-wrapper');
        const $disableWidetAlert    = $('.widget-disable-alert');
        const $activeWidgetButton   = $('#active_widget');

        if (button === null) {
            button = $activeWidgetButton[0];
        }

        if (button.checked) {
            $triggerBlockWrapper.show();
            $disableWidetAlert.hide();
        } else {
            $triggerBlockWrapper.hide();
            $disableWidetAlert.show();
        }

        $('#active_widget').on('change', function () {
            activeWidgetHandler(this);
        });
    }
}