summaryrefslogtreecommitdiff
path: root/objects.js
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2013-03-22 10:36:19 +0100
committerjmoenig <jens@moenig.org>2013-03-22 10:36:19 +0100
commitef170e9a2850af90e97118c39812015204bbcdb3 (patch)
treea048d8f0a3f50d4bc7a41020da3e00edaf8c70ab /objects.js
parent957812e6f0c5675f6bf6257a47f5243acb122881 (diff)
downloadsnap-ef170e9a2850af90e97118c39812015204bbcdb3.tar.gz
snap-ef170e9a2850af90e97118c39812015204bbcdb3.zip
Zoom Blocks
in the settings menu. also: Optional slider for numeric prompter, numberic prompters for watchers' sliderMin/Max
Diffstat (limited to 'objects.js')
-rw-r--r--objects.js14
1 files changed, 11 insertions, 3 deletions
diff --git a/objects.js b/objects.js
index 546106e..e7cf9cd 100644
--- a/objects.js
+++ b/objects.js
@@ -120,7 +120,7 @@ PrototypeHatBlockMorph*/
// Global stuff ////////////////////////////////////////////////////////
-modules.objects = '2013-March-12';
+modules.objects = '2013-March-22';
var SpriteMorph;
var StageMorph;
@@ -5453,7 +5453,11 @@ WatcherMorph.prototype.userSetSliderMin = function () {
).prompt(
"Slider minimum value",
this.sliderMorph.start.toString(),
- this.world()
+ this.world(),
+ null, // pic
+ null, // choices
+ null, // read only
+ true // numeric
);
};
@@ -5465,7 +5469,11 @@ WatcherMorph.prototype.userSetSliderMax = function () {
).prompt(
"Slider maximum value",
this.sliderMorph.stop.toString(),
- this.world()
+ this.world(),
+ null, // pic
+ null, // choices
+ null, // read only
+ true // numeric
);
};