web/data/cubicweb.rhythm.js
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Mon, 07 Nov 2011 10:55:15 +0100
changeset 8060 8acfd23578a8
parent 5658 7b9553a9db65
permissions -rw-r--r--
[table] display navigation component both above and below the table + add the ``show_all_option`` class parameter on TableLayout

$(document).ready(function() {
    $('a.rhythm').click(function (event){
        $('div#pageContent').toggleClass('rhythm_bg');
        $('div#page').toggleClass('rhythm_bg');
        event.preventDefault();
    });
});