Fixed ctrl+a also selects the "about" tab #230
This commit is contained in:
parent
af7f776cbc
commit
bda95c49f3
@ -99,6 +99,7 @@ $(document).ready(function(){
|
||||
})
|
||||
.bind(['i', 'ctrl+i'], function() {
|
||||
if (visible.infobox()) view.infobox.hide();
|
||||
else if (visible.multiselect()) return false;
|
||||
else if (visible.infoboxbutton()) view.infobox.show();
|
||||
})
|
||||
.bind(['command+backspace', 'ctrl+backspace'], function() {
|
||||
|
@ -193,6 +193,9 @@ multiselect = {
|
||||
|
||||
close: function() {
|
||||
|
||||
// Hide selection from the select all shortcut
|
||||
window.getSelection().removeAllRanges();
|
||||
|
||||
multiselect.stopResize();
|
||||
|
||||
multiselect.position.top = null;
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user