Просмотр исходного кода

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

Small correction
dds
Manfred Müller-Späth 9 лет назад
Родитель
Сommit
0a43f66de2
1 измененных файлов: 3 добавлений и 2 удалений
  1. +3
    -2
      gui/red/ui/view.js

+ 3
- 2
gui/red/ui/view.js Просмотреть файл

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

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

Загрузка…
Отмена
Сохранить