Created
January 28, 2014 18:21
-
-
Save highruned/8673191 to your computer and use it in GitHub Desktop.
Reflow Layout
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
function reflowLayout() { | |
// Add this arbitrary margin-bottom to force a reflow | |
$('html').css('zoom', 1.001); | |
// We need the timeout for this zoom hack to work on all devices | |
setTimeout(function() { | |
$('html').css('zoom', 1); | |
}, 100); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment