Skip to content

Instantly share code, notes, and snippets.

@benhuson
Created December 18, 2013 11:34
Show Gist options
  • Save benhuson/8020919 to your computer and use it in GitHub Desktop.
Save benhuson/8020919 to your computer and use it in GitHub Desktop.
var ipad_version = 0;
window.ondevicemotion = function(event) {
if (navigator.platform.indexOf("iPad") != -1) {
ipad_version = 1;
if (event.acceleration) ipad_version += window.devicePixelRatio;
}
window.ondevicemotion = null;
get_ipad_version();
}
setTimeout(function(){alert(ipad_version)},3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment