Reduce debounce time for scrolling down.

This commit is contained in:
JC Brand 2019-05-17 14:45:09 +02:00
parent bad9b08b61
commit 0fa6bcdcc2

View File

@ -359,7 +359,7 @@ converse.plugins.add('converse-chatview', {
}, },
initDebounced () { initDebounced () {
this.scrollDown = _.debounce(this._scrollDown, 250); this.scrollDown = _.debounce(this._scrollDown, 100);
this.markScrolled = _.debounce(this._markScrolled, 100); this.markScrolled = _.debounce(this._markScrolled, 100);
this.show = _.debounce(this._show, 250, {'leading': true}); this.show = _.debounce(this._show, 250, {'leading': true});
}, },