Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
if (navigator.userAgent.match(/iPad|iPhone|iPod;.*CPU.*OS 7_\d/i)) {
window.onload = function(){
if (window.innerHeight != document.documentElement.clientHeight) {
var fixViewportHeight = function () {
if (document.querySelectorAll("input:focus,textarea:focus,select:focus").length > 0) {
document.body.style.position = "static";
}
else {
document.body.style.height = window.innerHeight + 'px';
document.querySelector('html').style.height = window.innerHeight + 'px';
}
};
window.addEventListener("resize", fixViewportHeight, false);
fixViewportHeight();
}
};
}