Cleaned global scope from "option" var

This commit is contained in:
bolste 2011-06-28 06:16:15 -07:00
commit f818318ecc

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]);
}