mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05:00
Merge pull request #71 from tmickel/bugfix/flyout-listener
Temporarily disable flyout listeners until we fix GH-69
This commit is contained in:
commit
b1e913b99a
1 changed files with 3 additions and 2 deletions
|
@ -27,8 +27,9 @@ window.onload = function() {
|
||||||
|
|
||||||
// Block events.
|
// Block events.
|
||||||
workspace.addChangeListener(vm.blockListener);
|
workspace.addChangeListener(vm.blockListener);
|
||||||
var flyoutWorkspace = workspace.toolbox_.flyout_.workspace_;
|
// @todo: Re-enable flyout listening after fixing GH-69.
|
||||||
flyoutWorkspace.addChangeListener(vm.flyoutBlockListener);
|
//var flyoutWorkspace = workspace.toolbox_.flyout_.workspace_;
|
||||||
|
//flyoutWorkspace.addChangeListener(vm.flyoutBlockListener);
|
||||||
|
|
||||||
var blockexplorer = document.getElementById('blockexplorer');
|
var blockexplorer = document.getElementById('blockexplorer');
|
||||||
workspace.addChangeListener(function() {
|
workspace.addChangeListener(function() {
|
||||||
|
|
Loading…
Reference in a new issue