web/data/cubicweb.rhythm.js
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Tue, 12 Mar 2013 12:50:05 +0100
changeset 8748 f5027f8d2478
parent 5658 7b9553a9db65
permissions -rw-r--r--
drop typed_eid() in favour of int() (closes #2742462) typed_eid was introduced to abstract the eid type when running on Google AppEngine. It is not used anymore and can be removed. Let's use int() instead.

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