Merge pull request #242 from turkron/master

changed the auto sort function to make the function es5 compliant as …
This commit is contained in:
Javi Agenjo
2021-08-16 17:12:08 +02:00
committed by GitHub

View File

@@ -418,7 +418,7 @@
}
if (this.auto_sort_node_types) {
r.sort((a, b) => a.title.localeCompare(b.title));
r.sort(function(a,b){return a.title.localeCompare(b.title)});
}
return r;