From 7f9fe78c56dbe26ccdcd8f6fd33cbb9766add474 Mon Sep 17 00:00:00 2001 From: Jens Mönig Date: Sun, 15 Mar 2015 14:55:37 +0100 Subject: fixed #743 --- store.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'store.js') diff --git a/store.js b/store.js index b17fb49..d4a2b64 100644 --- a/store.js +++ b/store.js @@ -61,7 +61,7 @@ SyntaxElementMorph, Variable*/ // Global stuff //////////////////////////////////////////////////////// -modules.store = '2015-February-28'; +modules.store = '2015-March-15'; // XML_Serializer /////////////////////////////////////////////////////// @@ -782,7 +782,7 @@ SnapSerializer.prototype.loadCustomBlocks = function ( names = definition.parseSpec(definition.spec).filter( function (str) { - return str.charAt(0) === '%'; + return str.charAt(0) === '%' && str.length > 1; } ).map(function (str) { return str.substr(1); -- cgit v1.3.1