mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge pull request #2363 from kazuhitoyokoi/master-fixtabselectkey
Support ctrl key to select tabs for Windows
This commit is contained in:
commit
7321e206c5
@ -218,7 +218,7 @@ RED.tabs = (function() {
|
|||||||
var thisTab = $(this).parent();
|
var thisTab = $(this).parent();
|
||||||
var fireSelectionChanged = false;
|
var fireSelectionChanged = false;
|
||||||
if (options.onselect) {
|
if (options.onselect) {
|
||||||
if (evt.metaKey) {
|
if (evt.metaKey || evt.ctrlKey) {
|
||||||
if (thisTab.hasClass("selected")) {
|
if (thisTab.hasClass("selected")) {
|
||||||
thisTab.removeClass("selected");
|
thisTab.removeClass("selected");
|
||||||
if (thisTab[0] !== currentTab[0]) {
|
if (thisTab[0] !== currentTab[0]) {
|
||||||
|
Loading…
Reference in New Issue
Block a user