web/data/cubicweb.lazy.js
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Wed, 09 Jun 2010 16:16:54 +0200
changeset 5705 30b94973bc67
parent 5658 7b9553a9db65
child 6952 7de13eb473e3
permissions -rw-r--r--
[javascript] add a name property to namespaces, mainly for convenience in helpers such as movedToNamespace

function load_now(eltsel, holesel, reloadable) {
    var lazydiv = jQuery(eltsel);
    var hole = lazydiv.children(holesel);
    if ((hole.length == 0) && ! reloadable) {
        /* the hole is already filled */
        return;
    }
    lazydiv.loadxhtml(lazydiv.attr('cubicweb:loadurl'));
}

function trigger_load(divid) {
    jQuery('#lazy-' + divid).trigger('load_' + divid);
}