Repository: flex-falcon Updated Branches: refs/heads/develop ad1c5f098 -> ce631c7ce
fix namespace handling in css output Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/ce631c7c Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/ce631c7c Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/ce631c7c Branch: refs/heads/develop Commit: ce631c7ce905870b806ea7126c99dbe5196842f6 Parents: ad1c5f0 Author: Alex Harui <[email protected]> Authored: Tue Oct 20 09:58:22 2015 -0700 Committer: Alex Harui <[email protected]> Committed: Tue Oct 20 09:58:22 2015 -0700 ---------------------------------------------------------------------- .../internal/driver/js/flexjs/JSCSSCompilationSession.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ce631c7c/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java ---------------------------------------------------------------------- diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java index c55351d..b61bbf5 100644 --- a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java +++ b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java @@ -133,7 +133,7 @@ public class JSCSSCompilationSession extends CSSCompilationSession { int pipe = s.indexOf("|"); if (pipe != -1) - s = s.substring(pipe); + s = s.substring(pipe + 1); s = "." + s; } if (condition != null)
