mirror of
https://github.com/redmine/redmine.git
synced 2025-11-11 07:46:02 +01:00
Adds support for Mac metaKey in issues selection (#5148).
Contributed by Simon Courtois. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5217 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -50,7 +50,7 @@ ContextMenu.prototype = {
|
|||||||
tr.removeClassName('context-menu-selection');
|
tr.removeClassName('context-menu-selection');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (e.ctrlKey) {
|
if (e.ctrlKey || e.metaKey) {
|
||||||
this.toggleSelection(tr);
|
this.toggleSelection(tr);
|
||||||
} else if (e.shiftKey) {
|
} else if (e.shiftKey) {
|
||||||
if (this.lastSelected != null) {
|
if (this.lastSelected != null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user