summaryrefslogtreecommitdiff
path: root/assets/js/common.js
blob: 02730e8a48746c9d3b6336169df0e5ec5397c66b (plain)
1
2
3
4
5
6
7
8
9
$(document).ready(function() {
    $('a.abstract').click(function() {
        $(this).parent().parent().find(".abstract.hidden").toggleClass('open');
    });
    $('a.bibtex').click(function() {
        $(this).parent().parent().find(".bibtex.hidden").toggleClass('open');
    });
    $('.navbar-nav').find('a').removeClass('waves-effect waves-light');
});