From 4578443f70213eff06a2de94cb7e3dc9daae0d3e Mon Sep 17 00:00:00 2001 From: Andreas Kirsch Date: Mon, 4 Jan 2016 15:09:25 +0100 Subject: [PATCH] fix(ng_events): typo in selector for ng-touchcancel --- lib/directive/ng_events.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/directive/ng_events.dart b/lib/directive/ng_events.dart index 50841f54b..ee4948996 100644 --- a/lib/directive/ng_events.dart +++ b/lib/directive/ng_events.dart @@ -118,7 +118,7 @@ part of angular.directive; @Decorator(selector: '[ng-selectstart]', map: const {'ng-selectstart': '&onSelectStart'}) //@Decorator(selector: '[ng-speechchange]', map: const {'ng-speechchange': '&onSpeechChange'}) @Decorator(selector: '[ng-submit]', map: const {'ng-submit': '&onSubmit'}) -@Decorator(selector: '[ng-toucheancel]', map: const {'ng-touchcancel': '&onTouchCancel'}) +@Decorator(selector: '[ng-touchcancel]', map: const {'ng-touchcancel': '&onTouchCancel'}) @Decorator(selector: '[ng-touchend]', map: const {'ng-touchend': '&onTouchEnd'}) @Decorator(selector: '[ng-touchenter]', map: const {'ng-touchenter': '&onTouchEnter'}) @Decorator(selector: '[ng-touchleave]', map: const {'ng-touchleave': '&onTouchLeave'})