mirror of
https://github.com/google/blockly.git
synced 2026-01-11 02:47:09 +01:00
Restore require variables to blockly.js (#3145)
Variables and Xml are circular dependencies. Both need to be declared in blockly.js Maybe they can be sorted out later, but for now things are broken since nobody in core currently requires variables anywhere.
This commit is contained in:
committed by
Sam El-Husseini
parent
f9e54b033a
commit
f5909c9916
@@ -27,18 +27,19 @@
|
||||
*/
|
||||
goog.provide('Blockly');
|
||||
|
||||
goog.require('Blockly.constants');
|
||||
goog.require('Blockly.Events');
|
||||
goog.require('Blockly.Events.Ui');
|
||||
goog.require('Blockly.inject');
|
||||
goog.require('Blockly.navigation');
|
||||
goog.require('Blockly.Procedures');
|
||||
goog.require('Blockly.Tooltip');
|
||||
goog.require('Blockly.Touch');
|
||||
goog.require('Blockly.WidgetDiv');
|
||||
goog.require('Blockly.WorkspaceSvg');
|
||||
goog.require('Blockly.constants');
|
||||
goog.require('Blockly.inject');
|
||||
goog.require('Blockly.utils');
|
||||
goog.require('Blockly.utils.colour');
|
||||
goog.require('Blockly.Variables');
|
||||
goog.require('Blockly.WidgetDiv');
|
||||
goog.require('Blockly.WorkspaceSvg');
|
||||
goog.require('Blockly.Xml');
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user