storing scroll position every 100 ms should be enough
This commit is contained in:
parent
9a4dcd1a1c
commit
6ebdf86ec1
|
@ -257,7 +257,7 @@ export default Ember.Component.extend({
|
|||
_bindSectionsScroll() {
|
||||
$list.on("scroll", () => {
|
||||
Ember.run.debounce(this, this._checkVisibleSection, 150);
|
||||
Ember.run.debounce(this, this._storeScrollPosition, 50);
|
||||
Ember.run.debounce(this, this._storeScrollPosition, 100);
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue