Kala666

vscode.js

Nov 6th, 2018
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     // No
  2.     elem.animate({height: "toggle", opacity: "toggle"},
  3.     300, null, function() {
  4.     }
  5.  
  6.     // Yes
  7.     elem.animate({height: "toggle", opacity: "toggle"},
  8.         300, null, function() {
  9.     }
  10.  
  11.     // Even better
  12.     elem.animate({height: "toggle", opacity: "toggle"},
  13.                  300, null, function() {
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment