kopia lustrzana https://github.com/backface/turtlestitch
Fixed #809
rodzic
c67a13b7bd
commit
2cbba6c762
4
gui.js
4
gui.js
|
@ -4733,8 +4733,8 @@ ProjectDialogMorph.prototype.getExamplesProjectList = function () {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
projects.sort(function (x, y) {
|
projects = projects.sort(function (x, y) {
|
||||||
return x.name < y.name ? -1 : 1;
|
return x.name.toLowerCase() < y.name.toLowerCase() ? -1 : 1;
|
||||||
});
|
});
|
||||||
return projects;
|
return projects;
|
||||||
};
|
};
|
||||||
|
|
Ładowanie…
Reference in New Issue