Changed toggle all sections key to T

Allows both `T` and `t`.

It had been [Shift]+[+] before.
This commit is contained in:
Alex Ozdemir 2016-05-22 12:47:53 -07:00
parent ab09fbca23
commit 01dc9f0be4
2 changed files with 3 additions and 2 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>+</dt>
<dt>T</dt>
<dd>Collapse/expand all sections</dd>
</dl>
</div>

View File

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