web/data/cubicweb.lazy.js
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Mon, 15 Nov 2010 19:38:31 +0100
branchstable
changeset 6702 dfc19a6fb8aa
parent 5658 7b9553a9db65
child 6952 7de13eb473e3
permissions -rw-r--r--
[migration] 3.10.4 migration should not ask confirmation when adding CWSource

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);
}