web/data/cubicweb.rhythm.js
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 29 Nov 2011 11:18:46 +0100
changeset 8102 619d41a4c770
parent 5658 7b9553a9db65
permissions -rw-r--r--
[navigation] provide a link back from the full view to the paginated one provide a better marker for navigation induced call detection Closes #2103687

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