Skip to content

Commit

Permalink
[BLUE-2][UPD] add functionality for Mac's Command + Click
Browse files Browse the repository at this point in the history
  • Loading branch information
ambientstl authored and amh-mw committed Aug 19, 2022
1 parent 24ae963 commit 36707a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ var ListRenderer = BasicRenderer.extend({

switch(ev.originalEvent.which) {
case 1:
if (ev.ctrlKey && baseURI.substring(baseURI.length - 4) === "list") {
if (ev.ctrlKey || ev.metaKey && baseURI.substring(baseURI.length - 4) === "list") {
// Prevent record from being opened in current tab
ev.preventDefault();
// Construct form URL for selected record
Expand Down

0 comments on commit 36707a2

Please sign in to comment.