web/data/cubicweb.preferences.js
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Wed, 03 Jun 2009 19:47:03 +0200
branch3.1
changeset 2031 ed7cedcd75f8
parent 604 e85042d18b48
child 1419 7ff24154351d
child 1612 0be8605c411a
permissions -rw-r--r--
merging branches to close them.

/* toggle visibility of an element by its id
 * & set current visibility status in a cookie
 * XXX whenever used outside of preferences, don't forget to
 *     move me in a more appropriate place
 */
function toggle_and_remember_visibility(elemId, cookiename) {
    jqNode(elemId).toggleClass('hidden');
    async_remote_exec('set_cookie', cookiename,
                      jQuery('#' + elemId).attr('class'));
}