File "hide-popup.js"

Full Path: /home/tekvhqgl/public_html/wp-content/plugins/chaty/src/components/hide-popup.js
File size: 394 bytes
MIME-type: text/plain
Charset: utf-8

const $ = window.jQuery;
export default function hidePopup() {
    $(".close-chaty-popup-btn").on("click", function(e){
        e.stopPropagation();
        $(".chaty-popup").hide();
        if($(this).hasClass("channel-setting-btn")) {
            $("#chaty-social-channel").trigger("click");
            $(window).scrollTop($("#channels-selected-list").offset().top - 120);
        }
    })
}