Revert "don't use undefined here" This reverts commit 6764755dbf57df339a927ff93dfd0d7c88cfc36a.
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/1fa9c5c9 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/1fa9c5c9 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/1fa9c5c9 Branch: refs/heads/develop Commit: 1fa9c5c9be81ce68f46c6947c2d8fd52127af283 Parents: 3ca9f7b Author: Alex Harui <[email protected]> Authored: Tue May 24 16:28:03 2016 -0700 Committer: Alex Harui <[email protected]> Committed: Tue May 24 16:28:03 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/1fa9c5c9/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 857ea53..161019e 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 = 'animationiteration'; + public static const ANIMATIONITERATION:String = undefined /* TODO type not set */; /** * Generated doc for missing field JSDoc. @@ -174,7 +174,7 @@ public class EventType { * * @see [eventtype] */ - public static const ANIMATIONSTART:String = 'animationstart'; + public static const ANIMATIONSTART:String = undefined /* TODO type not set */; /** * Generated doc for missing field JSDoc. @@ -216,7 +216,7 @@ public class EventType { * * @see [eventtype] */ - public static const TRANSITIONEND:String = 'transitionend'; + public static const TRANSITIONEND:String = undefined /* TODO type not set */; /** * Generated doc for missing field JSDoc. @@ -482,7 +482,7 @@ public class EventType { * * @see [eventtype] */ - public static const FOCUSIN:String = 'focus'; + public static const FOCUSIN:String = undefined /* TODO type not set */; /** * Generated doc for missing field JSDoc. @@ -538,7 +538,7 @@ public class EventType { * * @see [eventtype] */ - public static const FOCUSOUT:String = 'blur'; + public static const FOCUSOUT:String = undefined /* TODO type not set */; /** * Generated doc for missing field JSDoc. @@ -832,7 +832,7 @@ public class EventType { * * @see [eventtype] */ - public static const ANIMATIONEND:String = 'animationend'; + public static const ANIMATIONEND:String = undefined /* TODO type not set */; /** * Generated doc for missing field JSDoc.
