web/data/cubicweb.lazy.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 07 Feb 2011 15:13:05 +0100
changeset 6943 406a41c25e13
parent 5658 7b9553a9db65
child 6952 7de13eb473e3
permissions -rw-r--r--
[sources] reorganize abstract source code, drop no more used cleanup_entities_info and _cleanup_system_relations methods

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