web/data/cubicweb.rhythm.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 17 Jul 2012 12:24:11 +0200
changeset 8492 8ec7cc28b501
parent 5658 7b9553a9db65
permissions -rw-r--r--
[doc] use :meth: and remove doc to deprecated methods

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