web/data/cubicweb.lazy.js
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Mon, 18 Oct 2010 11:04:19 +0200
branchstable
changeset 6535 972bd504daf6
parent 5658 7b9553a9db65
child 6952 7de13eb473e3
permissions -rw-r--r--
[devtools] Clean up import of f328ec853e18 and use lgc's getlogin. os.getlogin use the unix getlogin which is notoriously bugged.

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