aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/web/static/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/web/static/js/app.js')
-rw-r--r--libmproxy/web/static/js/app.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/libmproxy/web/static/js/app.js b/libmproxy/web/static/js/app.js
index d7c07089..230ff6e3 100644
--- a/libmproxy/web/static/js/app.js
+++ b/libmproxy/web/static/js/app.js
@@ -2,7 +2,11 @@
var AutoScrollMixin = {
componentWillUpdate: function () {
var node = this.getDOMNode();
- this._shouldScrollBottom = node.scrollTop + node.clientHeight === node.scrollHeight;
+ this._shouldScrollBottom = (
+ node.scrollTop !== 0
+ &&
+ node.scrollTop + node.clientHeight === node.scrollHeight
+ );
},
componentDidUpdate: function () {
if (this._shouldScrollBottom) {