Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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