Skip to content

Instantly share code, notes, and snippets.

@sseletskyy
Created October 28, 2013 17:13
Show Gist options
  • Save sseletskyy/7200765 to your computer and use it in GitHub Desktop.
Save sseletskyy/7200765 to your computer and use it in GitHub Desktop.
Fix for layout in iOS7
onDeviceReady: function() {
if(window.device && parseFloat(window.device.version) >= 7.0){
//$("footer").css("padding-bottom","20px");
document.body.style.marginTop = "20px";
// jQuery
$(".container").css("margin-top","20px");
// pure JS
document.getElementsByClassName('container')[0].setAttribute('style', 'margin-top: 20px');
}
app.receivedEvent('deviceready');
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment