web/data/cubicweb.rhythm.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 07 Jun 2010 19:17:16 +0200
changeset 5688 21658a3a386a
parent 5658 7b9553a9db65
permissions -rw-r--r--
[schema view] improve it slightly by attributing the same color to rdef of the same relation type

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