File "settings-button.js"
Full Path: /home/tekvhqgl/public_html/wp-content/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'
});
})
}