ソースを参照

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

dds
Manfred Müller-Späth 9年前
コミット
90aad62e30
1個のファイルの変更9行の追加1行の削除
  1. +9
    -1
      gui/red/storage.js

+ 9
- 1
gui/red/storage.js ファイルの表示

@@ -18,8 +18,16 @@ RED.storage = (function() {
if (data) RED.nodes.import(data, false);
}
}
function clear() {
// TOOD: use setTimeout to limit the rate of changes?
if (localStorage) {
localStorage.removeItem("audio_library_guitool");
//console.log("localStorage write");
}
}
return {
update: update,
load: load
load: load,
clear: clear
}
})();

読み込み中…
キャンセル
保存