Devs,
I've added a JS function which can sort any elements like this:
$("body.viewAppList .apps .real
.appInfo").sortElements(function(a, b){
return $(a).find(".traits .fileName").first().text().trim()
$(b).find(".traits .fileName").first().text().trim() ? 1 :
-1;
});
So you can give it any set of non-nested elements (but even at different
levels in the DOM) and have them sorted by the comparer you provide.
Perhaps it could even help with the Migration Issues report complexity,
not sure.
<script src="reports/resources/js/windup-utils.js"></script>
Enjoy :)