web/data/cubicweb.rhythm.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 06 Jan 2011 11:55:31 +0100
branchstable
changeset 6785 c462147c9315
parent 5658 7b9553a9db65
permissions -rw-r--r--
[boxes] add id of the rset to generated dom id of RsetBox to lower chance of id conflict (object id may be reused later)

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