Guest User

Untitled

a guest
Jun 13th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. self.puff({duration: 0, queue: 'end',
  2. afterFinish: Element.remove.bindAsEventListener(self)
  3. });
  4.  
  5. self.puff({duration: 0, queue: 'end',
  6. afterFinish: function () { self.remove(); }
  7. });
  8.  
  9. self.puff({duration: 0, queue: 'end',
  10. afterFinish: self.remove.bind(self)
  11. });
  12.  
  13. function(){ self.remove(); }
Add Comment
Please, Sign In to add comment