Allow showing a group by the uuid of any of it's individual crash
This removes the dependency on insertion order.
Also split Group::stats_by_product_and_version from get
// Adapted from socorro
// Licence: same as socorro (MPL ?)
$(document).ready(function () {
$('.signature-column').append(' <a class="expand" href="#">[Expand]</a>');
$('.expand').click(function () {
$(".shortened-signature", $(this).parents('table')).each(function () {
$(this).text($(this).attr('title')).removeAttr('title');
$(this).removeClass("prettyprinted");
});
prettyPrint();
$(this).remove();
return false;
});
$('a[data-toggle="tooltip"]').tooltip();
prettyPrint();
});