mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
Fix Travis errors
This commit is contained in:
@@ -32,7 +32,6 @@
|
||||
**/
|
||||
goog.provide('Blockly.utils');
|
||||
|
||||
goog.require('Blockly.Touch');
|
||||
goog.require('goog.dom');
|
||||
goog.require('goog.events.BrowserFeature');
|
||||
goog.require('goog.math.Coordinate');
|
||||
|
||||
@@ -1090,8 +1090,8 @@ Blockly.WorkspaceSvg.prototype.deleteVariableById = function(id) {
|
||||
* @return {?Blockly.VariableModel} The newly created variable.
|
||||
* @package
|
||||
*/
|
||||
Blockly.WorkspaceSvg.prototype.createVariable =
|
||||
function(name, opt_type, opt_id) {
|
||||
Blockly.WorkspaceSvg.prototype.createVariable = function(name,
|
||||
opt_type, opt_id) {
|
||||
var newVar = Blockly.WorkspaceSvg.superClass_.createVariable.call(
|
||||
this, name, opt_type, opt_id);
|
||||
this.refreshToolboxSelection();
|
||||
|
||||
Reference in New Issue
Block a user