Do not use Math.sign() to support very old browsers

This commit is contained in:
Andreas Hocevar
2019-11-18 07:54:20 +01:00
parent f784fe6e42
commit 3cca945002

View File

@@ -154,7 +154,7 @@ class MouseWheelZoom extends Interaction {
endInteraction_() {
this.trackpadTimeoutId_ = undefined;
const view = this.getMap().getView();
view.endInteraction(undefined, Math.sign(this.lastDelta_), this.lastAnchor_);
view.endInteraction(undefined, this.lastDelta_ ? (this.lastDelta_ > 0 ? 1 : -1) : 0, this.lastAnchor_);
}
/**