web/data/cubicweb.rhythm.js
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Thu, 30 May 2013 14:46:32 +0200
changeset 8997 525915f8bc1c
parent 5658 7b9553a9db65
permissions -rw-r--r--
[web/application] add some minimal documentation Some documentation to the Application main entry point.

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