Fix setting fontSize style on editor

This commit is contained in:
Julian Viereck 2011-01-28 21:56:38 +08:00 committed by Fabian Jakobs
commit 3a7769ef47

View file

@ -171,7 +171,7 @@ exports.launch = function(env) {
});
bindDropdown("fontsize", function(value) {
document.getElementById("editor").style["font-size"] = value;
document.getElementById("editor").style.fontSize = value;
});
bindDropdown("soft_wrap", function(value) {