Guest User

Untitled

a guest
Jan 20th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. data: () => ({
  2. menubar: null,
  3. burger: null
  4. }),
  5. methods: {
  6. // eslint-disable-next-line
  7. csjOpenMenuBar () {
  8. this.menubar = document.getElementById('csj-menubar-container')
  9. this.burger = document.getElementById('csj-burgerhidden')
  10. if (!menubar.classList.contains('csj-opened')) {
  11. this.menubar.classList.add('csj-opened')
  12. this.burger.style.visibility = 'hidden'
  13. }
  14. }
  15. },
Add Comment
Please, Sign In to add comment