Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

fix(ng_events): typo in selector for ng-touchcancel #1748

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/directive/ng_events.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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'})
Expand Down