don't use undefined here
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/4faa1c90 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/4faa1c90 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/4faa1c90 Branch: refs/heads/develop Commit: 4faa1c90d92105727c124cee8416911cad488dbd Parents: 3eb857a Author: Alex Harui <[email protected]> Authored: Tue May 24 12:06:07 2016 -0700 Committer: Alex Harui <[email protected]> Committed: Tue May 24 21:07:27 2016 -0700 ---------------------------------------------------------------------- externs/GCL/src/main/flex/goog/events/EventType.as | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/4faa1c90/externs/GCL/src/main/flex/goog/events/EventType.as ---------------------------------------------------------------------- diff --git a/externs/GCL/src/main/flex/goog/events/EventType.as b/externs/GCL/src/main/flex/goog/events/EventType.as index 161019e..857ea53 100644 --- a/externs/GCL/src/main/flex/goog/events/EventType.as +++ b/externs/GCL/src/main/flex/goog/events/EventType.as @@ -125,7 +125,7 @@ public class EventType { * * @see [eventtype] */ - public static const ANIMATIONITERATION:String = undefined /* TODO type not set */; + public static const ANIMATIONITERATION:String = 'animationiteration'; /** * Generated doc for missing field JSDoc. @@ -174,7 +174,7 @@ public class EventType { * * @see [eventtype] */ - public static const ANIMATIONSTART:String = undefined /* TODO type not set */; + public static const ANIMATIONSTART:String = 'animationstart'; /** * Generated doc for missing field JSDoc. @@ -216,7 +216,7 @@ public class EventType { * * @see [eventtype] */ - public static const TRANSITIONEND:String = undefined /* TODO type not set */; + public static const TRANSITIONEND:String = 'transitionend'; /** * Generated doc for missing field JSDoc. @@ -482,7 +482,7 @@ public class EventType { * * @see [eventtype] */ - public static const FOCUSIN:String = undefined /* TODO type not set */; + public static const FOCUSIN:String = 'focus'; /** * Generated doc for missing field JSDoc. @@ -538,7 +538,7 @@ public class EventType { * * @see [eventtype] */ - public static const FOCUSOUT:String = undefined /* TODO type not set */; + public static const FOCUSOUT:String = 'blur'; /** * Generated doc for missing field JSDoc. @@ -832,7 +832,7 @@ public class EventType { * * @see [eventtype] */ - public static const ANIMATIONEND:String = undefined /* TODO type not set */; + public static const ANIMATIONEND:String = 'animationend'; /** * Generated doc for missing field JSDoc.
