Created
November 13, 2010 03:34
-
-
Save ntreadway/675054 to your computer and use it in GitHub Desktop.
Jquery ipad /Haml detection
This file contains 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
- content_for :js do | |
- javascript_tag do | |
var agent=navigator.userAgent.toLowerCase(); | |
var is_ipad = (agent.indexOf('ipad')!=-1); | |
if (is_ipad) { | |
$('body').css('-webkit-background-size', '1024px 1024px');} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment