We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf9de4f commit bf6cd92Copy full SHA for bf6cd92
plugin/src/main/js/workflow-editor.js
@@ -9,13 +9,15 @@ import { addSamplesWidget } from './samples';
9
import ace from "ace-builds/src-noconflict/ace";
10
import "ace-builds/src-noconflict/ext-language_tools";
11
import "ace-builds/src-noconflict/mode-groovy";
12
+import "ace-builds/src-noconflict/snippets/javascript";
13
import "ace-builds/src-noconflict/theme-tomorrow";
14
15
// Import custom snippets
16
import "./snippets/workflow";
17
18
var editorIdCounter = 0;
19
20
+document.addEventListener("DOMContentLoaded", function() {
21
$('.workflow-editor-wrapper').each(function() {
22
initEditor($(this));
23
});
@@ -128,3 +130,4 @@ var editorIdCounter = 0;
128
130
wrapper.show();
129
131
textarea.hide();
132
}
133
+});
0 commit comments