| author | Vincent Tondellier <tonton+hg@team1664.org> |
| Wed, 02 May 2012 22:08:57 +0200 | |
| changeset 5 | 2f224f085623 |
| parent 3 | 2ff78fe4abda |
| child 12 | c98d3fa4a948 |
| permissions | -rw-r--r-- |
$(document).ready(function () { $('.signature-column').append(' <a class="expand" href="#">[Expand]</a>'); $('.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; }); });