web/data/cubicweb.lazy.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 28 Jan 2011 11:08:31 +0100
branchstable
changeset 6912 b61b844f2dad
parent 5658 7b9553a9db65
child 6952 7de13eb473e3
permissions -rw-r--r--
[schema sync] fix crash when bad inlinment detected, inlined is not in the locals

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