kopia lustrzana https://github.com/backface/turtlestitch
commit
c8ef53f9a9
4
gui.js
4
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;
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue