public/assets/js/application.js
author Vincent Tondellier <tonton+hg@team1664.org>
Sun, 21 Sep 2014 17:30:24 +0200
changeset 53 5d34ac405901
parent 38 6fa3cf9cf915
child 64 f66d935647bc
permissions -rw-r--r--
Added tag 0.1.0 for changeset 099dd15af6fd

// 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).remove();
        return false;
    });

    $('a[data-toggle="tooltip"]').tooltip();
});