diff options
| author | Stephen Blott | 2016-03-27 07:40:41 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-03-27 07:40:46 +0100 | 
| commit | 61f207c12a1617132115ce28e3f0262fffe187f4 (patch) | |
| tree | 69fb73e8993aaca43393250f0b3b1bdaa6690b9b /pages/options.coffee | |
| parent | 11ade4ed2dae1b6f873d5c33e533f39a03838adf (diff) | |
| download | vimium-61f207c12a1617132115ce28e3f0262fffe187f4.tar.bz2 | |
Do not hide help dialog on click (on options page).
Normally, we close the help dialog when the user clicks outside of it.
On the options page, however, the user might want the help dialog open
while they type command names into the key-mappings input.
Therefore, we disable hide-on-click for this specific use case.
This is a rather unfortunate hack.  However, #2045 is a serious problem
for an important use case.
Fixes #2045.
Diffstat (limited to 'pages/options.coffee')
| -rw-r--r-- | pages/options.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/options.coffee b/pages/options.coffee index 6070400e..c708efa7 100644 --- a/pages/options.coffee +++ b/pages/options.coffee @@ -322,4 +322,4 @@ document.addEventListener "DOMContentLoaded", ->  # Exported for tests.  root = exports ? window -root.Options = Options +extend root, {Options, isVimiumOptionsPage: true}  | 
