Skip to content

Instantly share code, notes, and snippets.

@stugoo
Created November 21, 2013 12:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stugoo/7581025 to your computer and use it in GitHub Desktop.
Save stugoo/7581025 to your computer and use it in GitHub Desktop.
IOS 6 modernizer test, needed this for super edge case on iPad on landscape. :/
// i know, i know, browser sniffing :(
// adaptation of http://stackoverflow.com/questions/8348139/detect-ios-version-less-than-5-with-javascript
Modernizr.addTest('ios6', function() {
var ios6 = false,
v, ver = false;
if (/iP(hone|od|ad)/.test(navigator.platform)) {
v = (navigator.appVersion).match(/OS (\d+)_(\d+)_?(\d+)?/),
ver = parseInt(v[1], 10);
}
if (ver == 6) {
ios6 = true;
}
return ios6;
});
//usage
/*
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
.ios6 .thing {
background: red;
}
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment