web/data/cubicweb.rhythm.js
author Julien Jehannet <julien.jehannet@logilab.fr>
Fri, 05 Nov 2010 18:51:22 +0100
branchstable
changeset 6694 d9eac4fd57dc
parent 5658 7b9553a9db65
permissions -rw-r--r--
[devtools] make migration handler easily available from CubicWebTC through .shell() method So we are able to use shell/migration helper methods directly from test cases.

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