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
if(navigator.userAgent.match(/iPad/i)) { | |
const ORIGINAL_WIDTH = 1024; | |
const ORIGINAL_HEIGHT = 768; | |
// screen.height === actual device width | |
// screen.width === actual device height | |
const w = screen.height; | |
const h = screen.width; | |
const BROWSER_TABS = h - window.innerHeight; | |
const WIDTH_SCALE = Math.round(w / (ORIGINAL_WIDTH / 100)) / 100; |