web/data/cubicweb.rhythm.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 29 Jun 2011 15:50:26 +0200
branchstable
changeset 7572 a554010417ce
parent 5658 7b9553a9db65
permissions -rw-r--r--
[formfields] use support_args instead of catching type error avoid hiding other issues and making debugging difficult

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