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
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-04-12 11:43:46 +0300
committerPhil Hughes <me@iamphill.com>2018-04-16 11:48:57 +0300
commitd32eaee20e75ca2e90397182dce59ee263f5c249 (patch)
tree7208034306c12b7547b8cda8c9fd47131eb81b6d /app/assets/javascripts/ide/stores/state.js
parent748a2f2b542fed2cb8ab7d1792cb874ce7423a61 (diff)
correctly show the dropdown with `t` keypress
added arrow key navigation in the dropdown enter & click open the file highlight occurrences of the searched text in the drppdown item fixed some performance issues when rendering limit the dropdown items to a maximum of 20 - this may change to more depending on other performance changes
Diffstat (limited to 'app/assets/javascripts/ide/stores/state.js')
-rw-r--r--app/assets/javascripts/ide/stores/state.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/ide/stores/state.js b/app/assets/javascripts/ide/stores/state.js
index e976884ae1f..3694ad953fa 100644
--- a/app/assets/javascripts/ide/stores/state.js
+++ b/app/assets/javascripts/ide/stores/state.js
@@ -17,5 +17,5 @@ export default () => ({
entries: {},
viewer: 'editor',
delayViewerUpdated: false,
- fileFindVisible: true,
+ fileFindVisible: false,
});