Lines 595-596 of xml.js read
variable = workspace.createVariable(text, type,
xmlChild.getAttribute(id));
but should read
variable = workspace.createVariable(text, type,
xmlChild.getAttribute('id'));
where id is not a variable name but an xml attribute key. Actually, the id variable contains the 'id' attribute of the parent node such that xmlChild.getAttribute(id) always return null.
Lines 595-596 of xml.js read
but should read
where id is not a variable name but an xml attribute key. Actually, the id variable contains the 'id' attribute of the parent node such that
xmlChild.getAttribute(id)always return null.