Support ctrl key to select tabs for Windows

This commit is contained in:
Kazuhito Yokoi 2019-10-31 14:46:29 +09:00
parent 3a1d0f3695
commit 361dc194ee
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ RED.tabs = (function() {
var thisTab = $(this).parent();
var fireSelectionChanged = false;
if (options.onselect) {
if (evt.metaKey) {
if (evt.metaKey || evt.ctrlKey) {
if (thisTab.hasClass("selected")) {
thisTab.removeClass("selected");
if (thisTab[0] !== currentTab[0]) {