Created
July 21, 2014 23:40
-
-
Save Pross/91ef182462ba9822f7d3 to your computer and use it in GitHub Desktop.
Disable animation on mobiles.
This file contains hidden or 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
<script> | |
jQuery( document ).ready(function() { | |
var width = jQuery(window).width() | |
if( width < 480 ) | |
jQuery('div').removeClass('pl-animation') | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment