Parcourir la source

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

dds
Manfred Müller-Späth il y a 9 ans
Parent
révision
90aad62e30
1 fichiers modifiés avec 9 ajouts et 1 suppressions
  1. +9
    -1
      gui/red/storage.js

+ 9
- 1
gui/red/storage.js Voir le fichier

@@ -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
}
})();

Chargement…
Annuler
Enregistrer