Repository: flex-asjs
Updated Branches:
refs/heads/develop 72c900969 -> 715a5ac76
Firefox and IE11 needs a unit ('px') when specifying position values
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/1a16bd3c
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/1a16bd3c
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/1a16bd3c
Branch: refs/heads/develop
Commit: 1a16bd3c8a3acb92aa8976a0103c0f8a81bb6919
Parents: 72c9009
Author: Om <[email protected]>
Authored: Fri Sep 5 15:48:10 2014 -0700
Committer: Om <[email protected]>
Committed: Fri Sep 5 15:48:10 2014 -0700
----------------------------------------------------------------------
.../js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1a16bd3c/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
----------------------------------------------------------------------
diff --git
a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
index 6f7f0f3..e0c4eac 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
@@ -100,6 +100,6 @@
org.apache.flex.core.graphics.GraphicShape.prototype.addedToParent = function()
org.apache.flex.core.graphics.GraphicShape.prototype.resize =
function(x,y,w,h) {
this.element.setAttribute("width", String(w) + "px");
this.element.setAttribute("height", String(h) + "px");
- this.element.setAttribute("style", "position:absolute; left:" + String(x) +
"; top:" + String(y) + ";");
+ this.element.setAttribute("style", "position:absolute; left:" + String(x) +
"px; top:" + String(y) + "px;");
};