forked from google/blockly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbab060
commit 3491467
Showing
6 changed files
with
16 additions
and
38 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,19 +19,14 @@ | |
*/ | ||
|
||
/** | ||
* @fileoverview Flexible templating system for defining blocks. | ||
* @fileoverview Name space for the Blocks singleton. | ||
* @author [email protected] (Ellen Spertus) | ||
*/ | ||
'use strict'; | ||
|
||
|
||
/** | ||
* Name space for the Blocks singleton. | ||
* Blocks gets populated in the blocks files, possibly through calls to | ||
* Blocks.addTemplate(). | ||
*/ | ||
goog.provide('Blockly.Blocks'); | ||
|
||
|
||
/** | ||
* Unique ID counter for created blocks. | ||
* @private | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
*/ | ||
goog.provide('Blockly.Msg'); | ||
|
||
|
||
/** | ||
* Back up original getMsg function. | ||
* @type {!Function} | ||
|