web/data/cubicweb.rhythm.js
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Wed, 09 Jun 2010 16:16:54 +0200
changeset 5705 30b94973bc67
parent 5658 7b9553a9db65
permissions -rw-r--r--
[javascript] add a name property to namespaces, mainly for convenience in helpers such as movedToNamespace

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