kopia lustrzana https://github.com/backface/turtlestitch
fixed #743
rodzic
31ea6f6030
commit
7f9fe78c56
|
@ -2470,3 +2470,8 @@ ______
|
|||
150309
|
||||
------
|
||||
* Blocks: fixed #738
|
||||
* GUI, Blocks: Only enable input caching for blocks
|
||||
|
||||
150315
|
||||
------
|
||||
* Store: fixed #743
|
||||
|
|
4
store.js
4
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);
|
||||
|
|
Ładowanie…
Reference in New Issue