You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by yi...@apache.org on 2016/10/25 10:33:38 UTC

git commit: [flex-asjs] [refs/heads/refactor-sprite] - Should be done by client.

Repository: flex-asjs
Updated Branches:
  refs/heads/refactor-sprite 3c7d7bc37 -> f24c9e683


Should be done by client.


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

Branch: refs/heads/refactor-sprite
Commit: f24c9e683685ea2a2c5de9dc60b44c3edecc8cc3
Parents: 3c7d7bc
Author: yishayw <yi...@hotmail.com>
Authored: Tue Oct 25 13:33:29 2016 +0300
Committer: yishayw <yi...@hotmail.com>
Committed: Tue Oct 25 13:33:29 2016 +0300

----------------------------------------------------------------------
 .../HTML5/src/main/flex/org/apache/flex/html5/TransformBead.as     | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/f24c9e68/frameworks/projects/HTML5/src/main/flex/org/apache/flex/html5/TransformBead.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML5/src/main/flex/org/apache/flex/html5/TransformBead.as b/frameworks/projects/HTML5/src/main/flex/org/apache/flex/html5/TransformBead.as
index 410d622..8964fc4 100644
--- a/frameworks/projects/HTML5/src/main/flex/org/apache/flex/html5/TransformBead.as
+++ b/frameworks/projects/HTML5/src/main/flex/org/apache/flex/html5/TransformBead.as
@@ -37,8 +37,6 @@ package org.apache.flex.html5
 			var fjsm:Matrix = transformModel.matrix;
 			var matrixArray:Array = [fjsm.a , fjsm.b, fjsm.c, fjsm.d, fjsm.tx, fjsm.ty];
 			var transformStr:String = "matrix(" + matrixArray.join(",") + ")";
-			element.style.transformOrigin = "0 0";
-			element.style.WebkitTransformOrigin = "0 0";
 			element.style.transform = transformStr;
 		}