EliJDonahue
9/19/2017 - 7:18 PM

An excerpt of Innovator\Client\scripts\CodeEditor\MethodEditor.html that can be changed to customize the editor theme

An excerpt of Innovator\Client\scripts\CodeEditor\MethodEditor.html that can be changed to customize the editor theme

. . .

// replace "textmate" with the name of your chosen theme
editor.setTheme("ace/theme/textmate");
editor.getSession().setUseWrapMode(true);
editor.setOptions({
    fontSize: "13px",
    fontFamily: "Consolas, Monaco, 'Source Code Pro'"
});

. . .