web/data/cubicweb.rhythm.js
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Wed, 11 Aug 2010 15:54:44 +0200
branchstable
changeset 6099 b22a4a3895df
parent 5658 7b9553a9db65
permissions -rw-r--r--
work around Apache's mod_proxy limitation with special chars in URLs by not using Rest urls when such a case is detected

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