Fixing a small typo in pull-to-refresh.ts

This commit is contained in:
Stephen Kemmerling
2015-11-13 13:27:47 -05:00
parent a0d0962a6c
commit ef30dc957b

View File

@@ -119,7 +119,7 @@ export class Refresher {
this.showIcon = util.isDefined(this.refreshingIcon);
this._touchMoveListener = this._handleTouchMov.bind(this);
this._touchMoveListener = this._handleTouchMove.bind(this);
this._touchEndListener = this._handleTouchEnd.bind(this);
this._handleScrollListener = this._handleScroll.bind(this);
sc.addEventListener('touchmove', this._touchMoveListener);