labels have now alt-l shortcut to correspond with the renaming

This commit is contained in:
azivner 2018-03-25 15:47:31 -04:00
parent 54e4f54678
commit 19c605a9a8
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ async function showDialog() {
});
}
$(document).bind('keydown', 'alt+a', e => {
$(document).bind('keydown', 'alt+l', e => {
showDialog();
e.preventDefault();

View File

@ -124,7 +124,7 @@
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dLabel">
<li><a id="show-history-button"><kbd>Alt+H</kbd> History</a></li>
<li><a class="show-labels-button"><kbd>Alt+A</kbd> Labels</a></li>
<li><a class="show-labels-button"><kbd>Alt+L</kbd> Labels</a></li>
<li><a id="show-source-button"><kbd>Ctrl+U</kbd> HTML source</a></li>
<li><a id="upload-attachment-button">Upload attachment</a></li>
</ul>