Jens Mönig 2017-01-30 08:24:02 +01:00
rodzic c8c36ae18f
commit 0808d08ba6
2 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -3337,3 +3337,7 @@ Fixes:
170127
------
* Blocks, Objects, Threaes, Store: added support for codification of String, Number and Boolean value types
170130
------
* Store: fixed #1645

Wyświetl plik

@ -61,7 +61,7 @@ normalizeCanvas, contains*/
// Global stuff ////////////////////////////////////////////////////////
modules.store = '2017-January-27';
modules.store = '2017-January-30';
// XML_Serializer ///////////////////////////////////////////////////////
@ -1118,6 +1118,9 @@ SnapSerializer.prototype.obsoleteBlock = function (isReporter) {
SnapSerializer.prototype.loadInput = function (model, input, block) {
// private
var inp, val, myself = this;
if (isNil(input)) {
return;
}
if (model.tag === 'script') {
inp = this.loadScript(model);
if (inp) {