Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. var channelWrap = $('.flex-vertical.channels-wrap');
  2. var guildsWrap = $('.guilds-wrapper');
  3. document.addEventListener('keydown', function(event) {
  4. if (event.metaKey && event.keyCode === 220) {
  5. if (channelWrap.getAttribute('style') === 'display: none') {
  6. channelWrap.setAttribute('style', '');
  7. guildsWrap.setAttribute('style', '');
  8. } else {
  9. channelWrap.setAttribute('style', 'display: none');
  10. guildsWrap.setAttribute('style', 'display: none');
  11. }
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement