Merge pull request #318 from bolste/patch-1

Cleaned global scope from "option" var
This commit is contained in:
Fabian Jakobs 2011-06-28 06:35:27 -07:00
commit 0cbc1dd611

View file

@ -382,7 +382,7 @@ function setupApi(editor, editorDiv, settingDiv, ace, options) {
}
}
for (option in ace.options) {
for (var option in ace.options) {
ret.setOption(option, ace.options[option]);
}