Fix parsing and passing of workspace options around Blockly (#3616)

This commit is contained in:
Sam El-Husseini
2020-01-21 13:29:03 -08:00
committed by GitHub
parent 847385715a
commit 70f42b3395
5 changed files with 28 additions and 28 deletions

View File

@@ -155,7 +155,7 @@ Blockly.Options = function(options) {
* workspace.
* @type {Blockly.Workspace}
*/
this.parentWorkspace = null;
this.parentWorkspace = options['parentWorkspace'];
};
/**