mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Fix: delay panning until we can determine direction
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user