make linter happy

This commit is contained in:
Jeff Wong 2018-06-29 09:53:07 -07:00
parent 8bdb62ca01
commit d79b54de6c
1 changed files with 3 additions and 8 deletions

View File

@ -1,8 +1,3 @@
import {
on,
default as computed
} from "ember-addons/ember-computed-decorators";
export default Ember.Mixin.create({
//velocity is pixels per ms
@ -24,7 +19,7 @@ export default Ember.Mixin.create({
},
_calculateNewPanState(oldState, e) {
if(e.type == "pointerup" || e.type == "pointercancel") {
if(e.type === "pointerup" || e.type === "pointercancel") {
return oldState;
}
const newTimestamp = new Date().getTime();
@ -79,10 +74,10 @@ export default Ember.Mixin.create({
if(previousState.start && "panStart" in this) {
this.panStart(newState);
}
else if((e.type == "pointerup" || e.type == "pointercancel") && "panEnd" in this) {
else if((e.type === "pointerup" || e.type === "pointercancel") && "panEnd" in this) {
this.panEnd(newState);
}
else if(e.type == "pointermove" && "panMove" in this) {
else if(e.type === "pointermove" && "panMove" in this) {
this.panMove(newState);
}
},