scroll.js --> fix scroll measures

scroll measures failed a travis test where document.documentElement.offsetHeight and document.documentElement.scrollHeight diffed by one pixel when the browser zoomed. --> Removed offsetHeight.
This commit is contained in:
Spreadyy 2016-09-29 08:59:46 +02:00 committed by GitHub
parent f2e471597d
commit 0c5d95c943

View File

@ -66,18 +66,8 @@ 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, elem.scrollWidth),
"height": Math.max(body.scrollHeight, elem.scrollHeight),
},
"inner": {
"width": window.innerWidth,