mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Missed sidebar api changes
This commit is contained in:
parent
ebcf539795
commit
1c655b5945
@ -86,7 +86,7 @@ RED.nodes = function() {
|
||||
var removedLinks = [];
|
||||
if (id in configNodes) {
|
||||
delete configNodes[id];
|
||||
RED.configTab.refresh();
|
||||
RED.sidebar.config.refresh();
|
||||
} else {
|
||||
var node = getNode(id);
|
||||
if (node) {
|
||||
@ -110,7 +110,7 @@ RED.nodes = function() {
|
||||
}
|
||||
}
|
||||
if (updatedConfigNode) {
|
||||
RED.configTab.refresh();
|
||||
RED.sidebar.config.refresh();
|
||||
}
|
||||
}
|
||||
return removedLinks;
|
||||
|
@ -23,6 +23,23 @@ RED.sidebar.info = function() {
|
||||
|
||||
RED.sidebar.addTab("info",content);
|
||||
|
||||
function jsonFilter(key,value) {
|
||||
if (key == "") {
|
||||
return value;
|
||||
}
|
||||
var t = typeof value;
|
||||
if ($.isArray(value)) {
|
||||
return "[array:"+value.length+"]";
|
||||
} else if (t === "object") {
|
||||
return "[object]"
|
||||
} else if (t === "string") {
|
||||
if (value.length > 30) {
|
||||
return value.substring(0,30)+" ...";
|
||||
}
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
function refresh(node) {
|
||||
var table = '<table class="node-info"><tbody>';
|
||||
|
||||
|
@ -521,23 +521,7 @@ RED.view = function() {
|
||||
}
|
||||
}
|
||||
|
||||
function jsonFilter(key,value) {
|
||||
if (key == "") {
|
||||
return value;
|
||||
}
|
||||
var t = typeof value;
|
||||
if ($.isArray(value)) {
|
||||
return "[array:"+value.length+"]";
|
||||
} else if (t === "object") {
|
||||
return "[object]"
|
||||
} else if (t === "string") {
|
||||
if (value.length > 30) {
|
||||
return value.substring(0,30)+" ...";
|
||||
}
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
|
||||
function calculateTextWidth(str) {
|
||||
var sp = document.createElement("span");
|
||||
sp.className = "node_label";
|
||||
|
Loading…
Reference in New Issue
Block a user