Fixed shortcut handling. Reverted to [Shift]+[+=]

Realized browsers use [Ctrl]+[+=] for zoom, so using [Shift]+[+=] for
collapse/expand was not necessarily a conflict.

Also a bugfix.
This commit is contained in:
Alex Ozdemir 2016-05-22 18:11:15 -07:00
parent 01dc9f0be4
commit 57ab0edaf0
2 changed files with 3 additions and 3 deletions

View File

@ -103,7 +103,7 @@ r##"<!DOCTYPE html>
<dd>Move down in search results</dd>
<dt>&#9166;</dt>
<dd>Go to active search result</dd>
<dt>T</dt>
<dt>+</dt>
<dd>Collapse/expand all sections</dd>
</dl>
</div>

View File

@ -124,8 +124,8 @@
focusSearchBar();
break;
case "t":
case "T":
case "+":
ev.preventDefault();
toggleAllDocs();
break;