Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-03-23 15:27:20 +0300
committerPhil Hughes <me@iamphill.com>2018-03-23 15:27:20 +0300
commite10bd302a5f1739c9f43b12798b8c29d19690a64 (patch)
tree0c5629d450bfbc3eea96d3aace32cb283458f36e /spec
parent49e871680ce4ca4ef947916da4969cc4e80991eb (diff)
Disable cursor for review mode in the IDE
Also disables occurrences highlights & the line highlight for the review mode. Closes #44307
Diffstat (limited to 'spec')
-rw-r--r--spec/javascripts/ide/lib/editor_spec.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/javascripts/ide/lib/editor_spec.js b/spec/javascripts/ide/lib/editor_spec.js
index d6df35c90e8..3c48d94d17a 100644
--- a/spec/javascripts/ide/lib/editor_spec.js
+++ b/spec/javascripts/ide/lib/editor_spec.js
@@ -74,6 +74,10 @@ describe('Multi-file editor library', () => {
},
readOnly: true,
scrollBeyondLastLine: false,
+ quickSuggestions: false,
+ occurrencesHighlight: false,
+ renderLineHighlight: 'none',
+ hideCursorInOverviewRuler: true,
},
);
});