Skip to content

Commit

Permalink
Revert comment change to app_controller.js (#6241)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeilFraser authored Jun 24, 2022
1 parent 1614373 commit d62358d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions demos/blockfactory/app_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
* SPDX-License-Identifier: Apache-2.0
*/

/**
* Controller for the Blockly Factory
* @constructor
*/

/**
* @fileoverview The AppController Class brings together the Block
* Factory, Block Library, and Block Exporter functionality into a single web
* app.
*/

/**
* Controller for the Blockly Factory
* @constructor
*/
AppController = function() {
// Initialize Block Library
this.blockLibraryName = 'blockLibrary';
Expand Down Expand Up @@ -120,7 +120,7 @@ AppController.prototype.exportBlockLibraryToFile = function() {
{ format: BlocklyDevTools.Analytics.FORMAT_XML });
} else {
var msg = 'Could not export Block Library without file name under which ' +
'to save library.';
'to save library.';
BlocklyDevTools.Analytics.onWarning(msg);
alert(msg);
}
Expand Down

0 comments on commit d62358d

Please sign in to comment.