summaryrefslogtreecommitdiff
path: root/blocks.js
diff options
context:
space:
mode:
Diffstat (limited to 'blocks.js')
-rw-r--r--blocks.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/blocks.js b/blocks.js
index f157d50..6805bca 100644
--- a/blocks.js
+++ b/blocks.js
@@ -153,7 +153,7 @@ DialogBoxMorph, BlockInputFragmentMorph, PrototypeHatBlockMorph*/
// Global stuff ////////////////////////////////////////////////////////
-modules.blocks = '2013-April-02';
+modules.blocks = '2013-April-03';
var SyntaxElementMorph;
var BlockMorph;
@@ -4223,7 +4223,6 @@ ScriptsMorph.prototype.closestBlock = function (comment, hand) {
all,
function (block) {
return !block.comment
- && !(block instanceof PrototypeHatBlockMorph)
&& !block.isPrototype
&& block.bounds.containsPoint(handPos);
}
@@ -4236,7 +4235,6 @@ ScriptsMorph.prototype.closestBlock = function (comment, hand) {
all,
function (block) {
return !block.comment
- && !(block instanceof PrototypeHatBlockMorph)
&& !block.isPrototype
&& block.bounds.intersects(fb);
}