Repository: flex-asjs Updated Branches: refs/heads/tlf b39c9d8dc -> dd9e119ae
Fixed error on minification Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/dd9e119a Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/dd9e119a Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/dd9e119a Branch: refs/heads/tlf Commit: dd9e119aeaadf4347f8100189ebc568b3e7d1bf5 Parents: b39c9d8 Author: Harbs <[email protected]> Authored: Sun Jun 4 21:38:37 2017 +0300 Committer: Harbs <[email protected]> Committed: Sun Jun 4 21:38:37 2017 +0300 ---------------------------------------------------------------------- .../Graphics/src/main/flex/org/apache/flex/svg/ClipBead.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/dd9e119a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/ClipBead.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/ClipBead.as b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/ClipBead.as index fb6d5fd..9c04162 100644 --- a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/ClipBead.as +++ b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/ClipBead.as @@ -141,7 +141,7 @@ package org.apache.flex.svg var pathNode:Element = createChildNode(clipPath, "path") as Element; pathNode.setAttribute("d", path.getPathString()); // set style - (host.element as Object).style.clipPath = "url(#" + clipPath.id + ")"; + host.element.style["clipPath"] = "url(#" + clipPath.id + ")"; } COMPILE::JS
