don't use undefined here
Project: http://git-wip-us.apache.org/repos/asf/flex-typedefs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-typedefs/commit/40d81e66 Tree: http://git-wip-us.apache.org/repos/asf/flex-typedefs/tree/40d81e66 Diff: http://git-wip-us.apache.org/repos/asf/flex-typedefs/diff/40d81e66 Branch: refs/heads/master Commit: 40d81e660f0ba77cffe62e492ebbe886da6165fc Parents: d34adf9 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 ---------------------------------------------------------------------- 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-typedefs/blob/40d81e66/GCL/src/main/flex/goog/events/EventType.as ---------------------------------------------------------------------- diff --git a/GCL/src/main/flex/goog/events/EventType.as b/GCL/src/main/flex/goog/events/EventType.as index 161019e..857ea53 100644 --- a/GCL/src/main/flex/goog/events/EventType.as +++ b/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.
