diff -r 873ceb7769a8 -r 2ff78fe4abda public/assets/js/application.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/public/assets/js/application.js Wed May 02 21:46:30 2012 +0200 @@ -0,0 +1,11 @@ +$(document).ready(function () { + $('.signature-column').append(' [Expand]'); + $('.expand').click(function () { + // swap cell title into cell text for each cell in this column + $(".shortened-signature", $(this).parents('table')).each(function () { + $(this).text($(this).attr('title')).removeAttr('title'); + }); + $(this).remove(); + return false; + }); +});