##// END OF EJS Templates
Adds support for Mac metaKey in issues selection (#5148)....
Jean-Philippe Lang -
r5097:c58c14cc738f
parent child
Show More
@@ -50,7 +50,7 ContextMenu.prototype = {
50 tr.removeClassName('context-menu-selection');
50 tr.removeClassName('context-menu-selection');
51 }
51 }
52 } else {
52 } else {
53 if (e.ctrlKey) {
53 if (e.ctrlKey || e.metaKey) {
54 this.toggleSelection(tr);
54 this.toggleSelection(tr);
55 } else if (e.shiftKey) {
55 } else if (e.shiftKey) {
56 if (this.lastSelected != null) {
56 if (this.lastSelected != null) {
General Comments 0
You need to be logged in to leave comments. Login now