Repository: flex-asjs
Updated Branches:
refs/heads/develop 55b558ed4 -> ec96f8086
Add a TIMER constant for events.
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/ec96f808
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/ec96f808
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/ec96f808
Branch: refs/heads/develop
Commit: ec96f80864b89970953eba9aff0fe16adb5f452e
Parents: 55b558e
Author: yishayw <yishayjobs@hotmail.com>
Authored: Thu Jul 7 12:48:06 2016 +0300
Committer: yishayw <yishayjobs@hotmail.com>
Committed: Thu Jul 7 12:48:06 2016 +0300
----------------------------------------------------------------------
.../src/main/flex/org/apache/flex/utils/Timer.as | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/ec96f808/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/Timer.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/Timer.as b/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/Timer.as
index 1e1dafa..01295ef 100644
--- a/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/Timer.as
+++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/Timer.as
@@ -59,6 +59,14 @@ COMPILE::SWF
public class Timer extends flash.utils.Timer
{
/**
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion FlexJS 0.0
+ */
+ public static const TIMER:String = "timer";
+ /**
* Constructor.
*
* @param delay The number of milliseconds
@@ -90,6 +98,15 @@ public class Timer extends flash.utils.Timer
COMPILE::JS
public class Timer extends EventDispatcher
{
+
+ /**
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion FlexJS 0.0
+ */
+ public static const TIMER:String = "timer";
/**
* Constructor.
*
|