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 "widget-size.js"

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

const $ = window.jQuery;
export default function widgetSize() {
    $('.widget-size-control').on('change', function() {

        if( this.type === 'radio' ) {
            $('#custom-widget-size').css({
                display: this.id === 'size-custom' ? 'block' : 'none'
            })

            $('.widget-size-control').prop('checked', false);
            $(this).prop('checked', true);
        }
        
        $('#custom-widget-size-input').val( this.value );
        change_custom_preview();
    })
}