summaryrefslogtreecommitdiff
path: root/blocks.js
diff options
context:
space:
mode:
Diffstat (limited to 'blocks.js')
-rw-r--r--blocks.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/blocks.js b/blocks.js
index 96d8b53..8b6bcc2 100644
--- a/blocks.js
+++ b/blocks.js
@@ -155,7 +155,7 @@ DialogBoxMorph, BlockInputFragmentMorph, PrototypeHatBlockMorph, Costume*/
// Global stuff ////////////////////////////////////////////////////////
-modules.blocks = '2013-November-26';
+modules.blocks = '2014-January-08';
var SyntaxElementMorph;
var BlockMorph;
@@ -996,7 +996,6 @@ SyntaxElementMorph.prototype.labelPart = function (spec) {
'attributesMenu',
true
);
- part.isStatic = true;
break;
case '%fun':
part = new InputSlotMorph(
@@ -6302,6 +6301,8 @@ InputSlotMorph.prototype.dropDownMenu = function () {
if (Object.prototype.hasOwnProperty.call(choices, key)) {
if (key[0] === '~') {
menu.addLine();
+ // } else if (key.indexOf('§_def') === 0) {
+ // menu.addItem(choices[key].blockInstance(), choices[key]);
} else {
menu.addItem(key, choices[key]);
}
@@ -6518,6 +6519,11 @@ InputSlotMorph.prototype.attributesMenu = function () {
dict[name] = name;
});
}
+ /*
+ obj.customBlocks.forEach(function (def, i) {
+ dict['§_def' + i] = def
+ });
+ */
return dict;
};