Created
May 11, 2015 18:38
-
-
Save crysfel/c8c76395413912c64461 to your computer and use it in GitHub Desktop.
Web Component Custom Logic
This file contains 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
close = root.querySelector('.panel-buttons span.collapse'); //step 1 | |
close.addEventListener('click',function(){ //Step 2 | |
var body = root.querySelector('.panel-body'); | |
if(body.style.display === 'none'){ | |
body.style.display = 'block' | |
}else{ | |
body.style.display = 'none'; | |
} | |
},false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment