summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhistory.txt1
-rw-r--r--objects.js4
2 files changed, 3 insertions, 2 deletions
diff --git a/history.txt b/history.txt
index 8bc9b1c..375739d 100755
--- a/history.txt
+++ b/history.txt
@@ -1990,3 +1990,4 @@ ______
131112
------
* Blocks, BYOB, Store: customizable drop-down menus for input slots
+* Objects: fixed wrong NaN display for variable watchers
diff --git a/objects.js b/objects.js
index 7eb7eb6..c0c99e9 100644
--- a/objects.js
+++ b/objects.js
@@ -124,7 +124,7 @@ PrototypeHatBlockMorph*/
// Global stuff ////////////////////////////////////////////////////////
-modules.objects = '2013-October-14';
+modules.objects = '2013-November-12';
var SpriteMorph;
var StageMorph;
@@ -6030,7 +6030,7 @@ WatcherMorph.prototype.update = function () {
} else {
newValue = this.target[this.getter]();
}
- num = parseFloat(newValue);
+ num = +newValue;
if (!isNaN(num)) {
newValue = Math.round(newValue * 1000000000) / 1000000000;
}