Skip to content

Instantly share code, notes, and snippets.

@itsmunim
Created March 30, 2020 16:54
Show Gist options
  • Select an option

  • Save itsmunim/a2a5b4b350ef5eed05db19e22ea97d5a to your computer and use it in GitHub Desktop.

Select an option

Save itsmunim/a2a5b4b350ef5eed05db19e22ea97d5a to your computer and use it in GitHub Desktop.
const header = document.getElementsByClassName('header')[0];
const statusElem = document.getElementById('status-txt');
const listener = ({ status }) => {
const emoji = status === 'normal' ? '๐Ÿ™„' : '๐Ÿ˜';
statusElem.innerText = `${status.replace(/-/g, ' ').toUpperCase()} ${emoji}`;
};
ScrollToStick.applyScrollToStick('header-wrap', header.offsetHeight, { listener });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment