Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
malacoscolicine
/
wp-content
/
plugins
/
chaty
/
src
/
components
:
settings-button.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
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' }); }) }