OS: iOS 8.1.1 Browser: Safari Phone: iPhone 5C
We have a web page which takes 100% height and width. We have locked do
For anyone else coming across this, the fix I ended up using was
window.addEventListener("resize", function(){
onResize();
});
function onResize(){
document.querySelector("html").style.height = window.innerHeight + "px"
};
onResize();
this seems to work in the latest version of twitter's browser on safari.