Guest User

Untitled

a guest
May 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. for (var i = 0; i < this.buttonClick.length; i++) {
  2.  
  3. this.buttonClick.onclick[i] = () => {
  4.  
  5. if (this.modalBlock.classList.contains(this.currentClass + '--active-js') == false) {
  6. this.modalBlock.classList.add(this.currentClass + '--active-js');
  7. this.body.style.overflow = 'hidden';
  8. }
  9. }
  10.  
  11. }
Add Comment
Please, Sign In to add comment