Spaces:
Runtime error
Runtime error
File size: 446 Bytes
7e4b742 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
window_outerdimensions = """
'use strict'
try {
if (!!window.outerWidth && !!window.outerHeight) {
const windowFrame = 85 // probably OS and WM dependent
window.outerWidth = window.innerWidth
console.log(`current window outer height ${window.outerHeight}`)
window.outerHeight = window.innerHeight + windowFrame
console.log(`new window outer height ${window.outerHeight}`)
}
} catch (err) {
}
"""
|