Lint test failed --> edited line length

This commit is contained in:
Spreadyy 2016-09-27 23:24:12 +02:00 committed by GitHub
parent a22ae2818c
commit f2e471597d

View File

@ -66,8 +66,18 @@ window._qutebrowser.scroll = (function() {
var pos = {
"px": {"x": window.scrollX, "y": window.scrollY},
"scroll": {
"width": Math.max(body.scrollWidth, body.offsetWidth, elem.scrollWidth, elem.offsetWidth),
"height": Math.max(body.scrollHeight, body.offsetHeight, elem.scrollHeight, elem.offsetHeight),
"width": Math.max(
body.scrollWidth,
body.offsetWidth,
elem.scrollWidth,
elem.offsetWidth
),
"height": Math.max(
body.scrollHeight,
body.offsetHeight,
elem.scrollHeight,
elem.offsetHeight
),
},
"inner": {
"width": window.innerWidth,