web/data/cubicweb.rhythm.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 03 Jan 2012 12:23:57 +0100
branchstable
changeset 8152 b9bb3372b85f
parent 5658 7b9553a9db65
permissions -rw-r--r--
[debian] cubicweb works with python 2.7 (which become the standard on some distros). Closes #2142050

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