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

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

const $ = window.jQuery;
export default function ruleButtonHandler() {
    $('.create-rule').on('click', function() {
        const $parent = $(this).parents('.chaty-option-box');
        $parent.addClass('show-remove-rule-button');
    })

    $('.remove-rules').on('click', function() {
        const $parent = $(this).parents('.chaty-option-box');
        $parent.removeClass('show-remove-rule-button');
    })
}