From e1a558a6739a59085e95161827662512a6d7fa78 Mon Sep 17 00:00:00 2001 From: Jens Mönig Date: Sat, 28 Feb 2015 05:58:34 -0800 Subject: fixed #715 --- threads.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'threads.js') diff --git a/threads.js b/threads.js index e07059f..50af8dd 100644 --- a/threads.js +++ b/threads.js @@ -83,7 +83,7 @@ ArgLabelMorph, localize, XML_Element, hex_sha512*/ // Global stuff //////////////////////////////////////////////////////// -modules.threads = '2015-January-12'; +modules.threads = '2015-February-28'; var ThreadManager; var Process; @@ -1926,7 +1926,7 @@ Process.prototype.reportTypeOf = function (thing) { if (thing === true || (thing === false)) { return 'Boolean'; } - if (!isNaN(parseFloat(thing))) { + if (!isNaN(+thing)) { return 'number'; } if (isString(thing)) { -- cgit v1.3.1