web/data/cubicweb.rhythm.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 24 Jul 2013 16:55:24 +0200
branchstable
changeset 9188 0677e03077fb
parent 5658 7b9553a9db65
permissions -rw-r--r--
[rqlrewrite] rewrite doesn't need a solutions argument, always use the Select'ones Also, do a copy systematically else it may lead to empty solutions depending on the rewrite path. Test case tentative included in the following changeset.

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