From c67a13b7bda166591a1b9f572e5113b31aa20f21 Mon Sep 17 00:00:00 2001 From: Brian Broll Date: Tue, 19 May 2015 15:48:17 -0500 Subject: Fixed typo in Process constructor Changed Process.prototype.contructor to Process.prototype.constructor --- threads.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threads.js b/threads.js index 165ad0e..df67b2c 100644 --- a/threads.js +++ b/threads.js @@ -339,7 +339,7 @@ ThreadManager.prototype.findProcess = function (block) { */ Process.prototype = {}; -Process.prototype.contructor = Process; +Process.prototype.constructor = Process; Process.prototype.timeout = 500; // msecs after which to force yield Process.prototype.isCatchingErrors = true; -- cgit v1.3.1 From 2cbba6c762fc664bd4d4d0733c89192982d135d2 Mon Sep 17 00:00:00 2001 From: Brian Broll Date: Sat, 23 May 2015 17:09:45 -0500 Subject: Fixed #809 --- gui.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui.js b/gui.js index 026a12c..02d6b7c 100644 --- a/gui.js +++ b/gui.js @@ -4733,8 +4733,8 @@ ProjectDialogMorph.prototype.getExamplesProjectList = function () { } } ); - projects.sort(function (x, y) { - return x.name < y.name ? -1 : 1; + projects = projects.sort(function (x, y) { + return x.name.toLowerCase() < y.name.toLowerCase() ? -1 : 1; }); return projects; }; -- cgit v1.3.1