You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2013/04/16 18:33:02 UTC

git commit: [flex-asjs] - Try to fix IE by adding change event mapping

Updated Branches:
  refs/heads/develop 1ce653d7d -> d8e86bd39


Try to fix IE by adding change event mapping


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/d8e86bd3
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/d8e86bd3
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/d8e86bd3

Branch: refs/heads/develop
Commit: d8e86bd39231b7a8761bda5537129143cd3d7e5a
Parents: 1ce653d
Author: Alex Harui <ah...@apache.org>
Authored: Mon Apr 15 19:48:18 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Apr 16 09:32:52 2013 -0700

----------------------------------------------------------------------
 .../FlexJS/src/org/apache/flex/utils/IE8Utils.js   |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/d8e86bd3/frameworks/js/FlexJS/src/org/apache/flex/utils/IE8Utils.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/IE8Utils.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/IE8Utils.js
index b9d5216..0689c63 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/IE8Utils.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/IE8Utils.js
@@ -94,6 +94,7 @@ org.apache.flex.utils.IE8Utils.dispatchEvent = function(obj, el, event) {
  */
 org.apache.flex.utils.IE8Utils.EventMap = {
     click: 'onclick',
+    change: 'onchange',
     mouseUp: 'onmouseup',
     mouseDown: 'onmousedown',
     mouseMove: 'onmousemove',