How can i sort by title the different titles of the menus, like prsplus settings?
in this menu it is used this setence:
// Sort nodes by title
prspSettingsNode.nodes.sort(function(a, b){
if (a.title < b.title) return -1;
if (a.title > b.title) return 1;
return 0;
|