mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Changed coding style
This commit is contained in:
parent
2ab93acca8
commit
3ed112cde6
@ -241,7 +241,9 @@ RED.workspaces = (function() {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
onadd: function(tab) {
|
onadd: function(tab) {
|
||||||
workspaceTabCount = tab.type === "tab"?workspaceTabCount+1:workspaceTabCount;
|
if (tab.type === "tab") {
|
||||||
|
workspaceTabCount++;
|
||||||
|
}
|
||||||
$('<span class="workspace-disabled-icon"><i class="fa fa-ban"></i> </span>').prependTo("#red-ui-tab-"+(tab.id.replace(".","-"))+" .red-ui-tab-label");
|
$('<span class="workspace-disabled-icon"><i class="fa fa-ban"></i> </span>').prependTo("#red-ui-tab-"+(tab.id.replace(".","-"))+" .red-ui-tab-label");
|
||||||
if (tab.disabled) {
|
if (tab.disabled) {
|
||||||
$("#red-ui-tab-"+(tab.id.replace(".","-"))).addClass('workspace-disabled');
|
$("#red-ui-tab-"+(tab.id.replace(".","-"))).addClass('workspace-disabled');
|
||||||
@ -252,7 +254,9 @@ RED.workspaces = (function() {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
onremove: function(tab) {
|
onremove: function(tab) {
|
||||||
workspaceTabCount = tab.type === "tab"?workspaceTabCount-1:workspaceTabCount;
|
if (tab.type === "tab") {
|
||||||
|
workspaceTabCount--;
|
||||||
|
}
|
||||||
RED.menu.setDisabled("menu-item-workspace-delete",workspaceTabCount <= 1);
|
RED.menu.setDisabled("menu-item-workspace-delete",workspaceTabCount <= 1);
|
||||||
if (workspaceTabCount === 0) {
|
if (workspaceTabCount === 0) {
|
||||||
hideWorkspace();
|
hideWorkspace();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user