Преглед изворни кода

Added import functionality of Arduino code (without disturbing whitespaces and empty lines)

Small correction
dds
Manfred Müller-Späth пре 9 година
родитељ
комит
0a43f66de2
1 измењених фајлова са 3 додато и 2 уклоњено
  1. +3
    -2
      gui/red/ui/view.js

+ 3
- 2
gui/red/ui/view.js Прегледај датотеку

*/ */
function importNodes(newNodesStr,touchImport) { function importNodes(newNodesStr,touchImport) {
var createNewIds = true;
// TODO: solve this more elegant as the system expects // TODO: solve this more elegant as the system expects
if ($("#node-input-arduino").prop('checked') === true) { if ($("#node-input-arduino").prop('checked') === true) {
newNodesStr = RED.nodes.cppToJSON(newNodesStr); newNodesStr = RED.nodes.cppToJSON(newNodesStr);
} }


try { try {
var createNewIds = true;
var result = RED.nodes.import(newNodesStr,true);
var result = RED.nodes.import(newNodesStr,createNewIds);
if (result) { if (result) {
var new_nodes = result[0]; var new_nodes = result[0];
var new_links = result[1]; var new_links = result[1];

Loading…
Откажи
Сачувај