Revert "don't use undefined here" This reverts commit 6764755dbf57df339a927ff93dfd0d7c88cfc36a.
Project: http://git-wip-us.apache.org/repos/asf/flex-typedefs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-typedefs/commit/e15e5d95 Tree: http://git-wip-us.apache.org/repos/asf/flex-typedefs/tree/e15e5d95 Diff: http://git-wip-us.apache.org/repos/asf/flex-typedefs/diff/e15e5d95 Branch: refs/heads/master Commit: e15e5d95088cf355f914c3e1622569f0f630ed1a Parents: 1ab88e7 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 ---------------------------------------------------------------------- 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/e15e5d95/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 857ea53..161019e 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 = '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.
