mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-06-14 22:01:47 -04:00
Fix importing cloud vars from xml.
This commit is contained in:
parent
2dae2f158a
commit
559b17c4ee
1 changed files with 1 additions and 1 deletions
|
@ -639,7 +639,7 @@ Blockly.Xml.domToVariables = function(xmlVariables, workspace) {
|
|||
var type = xmlChild.getAttribute('type');
|
||||
var id = xmlChild.getAttribute('id');
|
||||
var isLocal = xmlChild.getAttribute('islocal') == 'true';
|
||||
var isCloud = xmlChild.getAttribute('isCloud') == 'true';
|
||||
var isCloud = xmlChild.getAttribute('iscloud') == 'true';
|
||||
var name = xmlChild.textContent;
|
||||
|
||||
if (typeof(type) === undefined || type === null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue