From ef30dc957b9f47505a3388dc316936f2abf4f437 Mon Sep 17 00:00:00 2001 From: Stephen Kemmerling Date: Fri, 13 Nov 2015 13:27:47 -0500 Subject: [PATCH] Fixing a small typo in pull-to-refresh.ts --- ionic/components/scroll/pull-to-refresh.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ionic/components/scroll/pull-to-refresh.ts b/ionic/components/scroll/pull-to-refresh.ts index 035b105a2e..774f92481b 100644 --- a/ionic/components/scroll/pull-to-refresh.ts +++ b/ionic/components/scroll/pull-to-refresh.ts @@ -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);