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 = [];
|
var removedLinks = [];
|
||||||
if (id in configNodes) {
|
if (id in configNodes) {
|
||||||
delete configNodes[id];
|
delete configNodes[id];
|
||||||
RED.configTab.refresh();
|
RED.sidebar.config.refresh();
|
||||||
} else {
|
} else {
|
||||||
var node = getNode(id);
|
var node = getNode(id);
|
||||||
if (node) {
|
if (node) {
|
||||||
@ -110,7 +110,7 @@ RED.nodes = function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (updatedConfigNode) {
|
if (updatedConfigNode) {
|
||||||
RED.configTab.refresh();
|
RED.sidebar.config.refresh();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return removedLinks;
|
return removedLinks;
|
||||||
|
@ -23,6 +23,23 @@ RED.sidebar.info = function() {
|
|||||||
|
|
||||||
RED.sidebar.addTab("info",content);
|
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) {
|
function refresh(node) {
|
||||||
var table = '<table class="node-info"><tbody>';
|
var table = '<table class="node-info"><tbody>';
|
||||||
|
|
||||||
|
@ -521,22 +521,6 @@ 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) {
|
function calculateTextWidth(str) {
|
||||||
var sp = document.createElement("span");
|
var sp = document.createElement("span");
|
||||||
|
Loading…
Reference in New Issue
Block a user