Last active
June 22, 2017 07:43
-
-
Save thaoms/95f2cb36d83c5125efca921981977e2c to your computer and use it in GitHub Desktop.
Check if item has class and switch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let first = 'nav-trans'; | |
let second = 'nav-op'; | |
if(this.menu.classList.contains(first)) { | |
[first, second] = [second, first]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment