Repository: flex-asjs Updated Branches: refs/heads/develop 1e680c4f4 -> 9626c44b2
- Fix position of Switch button label Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/9626c44b Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/9626c44b Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/9626c44b Branch: refs/heads/develop Commit: 9626c44b2b3ccb2e2ee2faf2c6fbabb0d11e2225 Parents: 1e680c4 Author: piotrz <[email protected]> Authored: Mon Nov 21 21:24:42 2016 +0100 Committer: piotrz <[email protected]> Committed: Mon Nov 21 21:24:42 2016 +0100 ---------------------------------------------------------------------- .../MaterialDesignLite/src/main/flex/org/apache/flex/mdl/Switch.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/9626c44b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/Switch.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/Switch.as b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/Switch.as index 8e52548..8fe1fce 100644 --- a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/Switch.as +++ b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/Switch.as @@ -116,7 +116,7 @@ package org.apache.flex.mdl label.appendChild(input); span = document.createElement("span") as HTMLSpanElement; - span.className = "mdl-switch_label"; + span.className = "mdl-switch__label"; label.appendChild(span);
