2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00

Fix: delay panning until we can determine direction

This commit is contained in:
Jeff Wong 2018-07-14 15:57:58 -07:00
parent e6d4a09b55
commit f3b17b92b7

View file

@ -100,6 +100,9 @@ export default Ember.Mixin.create({
}
const previousState = this.get("_panState");
const newState = this._calculateNewPanState(previousState, e);
if (previousState.start && newState.distance < 5) {
return;
}
this.set("_panState", newState);
if (previousState.start && "panStart" in this) {
this.panStart(newState);