Guest User

Untitled

a guest
Jun 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. // jQuery.support.transition
  2. // to verify that CSS3 transition is supported (or any of its browser-specific implementations)
  3. $.support.transition = (function(){
  4. var thisBody = document.body || document.documentElement,
  5. thisStyle = thisBody.style,
  6. support = thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.OTransition !== undefined || thisStyle.transition !== undefined;
  7.  
  8. return support;
  9. })();
Add Comment
Please, Sign In to add comment