選択から変更イベントのエースエディターでテーマを変更するにはどうすればよいですか?domreadyイベントのテーマをプログラムで設定することができます。私が呼び出しているコード(両方のイベント)は次のようになり、( "ace / theme / clouds" / "ace / theme / clouds_midnight")のような値を渡します。
setThemeValue = function(themeVal){
var editor = ace.edit("editor");
editor.setTheme(themeVal);
editor.getSession().setMode("ace/mode/javascript");
};