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 "settings-button.js"

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

const $ = window.jQuery;

export default function settingsButton() {
    $('.chaty-settings').on('click', function( ev ){
        
        ev.preventDefault();
        ev.stopPropagation();

        $(this).toggleClass('enable');

        const $scope    = $(this).parents('.chaty-channel');
        const scrollTop = $(window).scrollTop();
        const distance  = $scope.offset().top - scrollTop - 130;
        window.scrollBy({
            top: distance,
            left: 0,
            behavior: 'smooth'
        });
    })
}