web/data/cubicweb.rhythm.js
author David Douard <david.douard@logilab.fr>
Thu, 24 Jan 2013 16:13:40 +0100
branchstable
changeset 8681 48731a0d3df8
parent 5658 7b9553a9db65
permissions -rw-r--r--
[ldap test] move the slapd database directory to a tempdir (closes #2583993) This is required to be sure we are not hurt by NFS or such...

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