summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci_lint_editor.js.es6
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/ci_lint_editor.js.es6')
-rw-r--r--app/assets/javascripts/ci_lint_editor.js.es618
1 files changed, 18 insertions, 0 deletions
diff --git a/app/assets/javascripts/ci_lint_editor.js.es6 b/app/assets/javascripts/ci_lint_editor.js.es6
new file mode 100644
index 00000000000..56ffaa765a8
--- /dev/null
+++ b/app/assets/javascripts/ci_lint_editor.js.es6
@@ -0,0 +1,18 @@
+(() => {
+ window.gl = window.gl || {};
+
+ class CILintEditor {
+ constructor() {
+ this.editor = window.ace.edit('ci-editor');
+ this.textarea = document.querySelector('#content');
+
+ this.editor.getSession().setMode('ace/mode/yaml');
+ this.editor.on('input', () => {
+ const content = this.editor.getSession().getValue();
+ this.textarea.value = content;
+ });
+ }
+ }
+
+ gl.CILintEditor = CILintEditor;
+})();