hosting/server/htdocs/login/index.html [206:274]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    $('viewfoot').innerHTML = config.viewfoot();
})();
/**
 * Initialize status message area.
 */
(function initstatus() {
    if (isNull($('status')))
        return;
    $('status').style.display = 'none';
    
    function divtransitionend(e) {
        e.target.style.display = 'none';
        e.target.className = ui.isMobile()? 'status3dm' : 'status3d';
        e.target.error = false;
    }
    $('status').addEventListener('webkitTransitionEnd', divtransitionend, false);
    $('status').addEventListener('transitionend', divtransitionend, false);
})();
/**
 * Show a status message.
 */
window.showstatus = function(s, c) {
    //debug('show status', s);
    if (isNull($('status')) || $('status').error)
        return s;
    $('status').innerHTML = '' + s + '';
    $('status').className = ui.isMobile()? 'status3dm' : 'status3d';
    $('status').style.display = 'block';
    $('status').error = c == 'errorstatus';
    if ($('status').delay)
        ui.cancelDelay($('status').delay);
    $('status').delay = ui.delay(function hidestatus() {
        $('status').className = ui.isMobile()? 'statusout3dm' : 'statusout3d';
        $('status').error = false;
    }, 3000);
    return s;
};
/**
 * Show an error message.
 */
window.errorstatus = function(s) {
    //debug('error', s);
    return showstatus(s, 'errorstatus');
};
/**
 * Show working status.
 */
window.workingstatus = function(w, c) {
    //debug('show working', w);
    if (isNull($('working')))
        return w;
    if (!ui.isMobile())
        $('working').style.top = ui.pixpos(Math.round(window.clientHeight / 2));
    $('working').style.display = w? 'block' : 'none';
    return w;
};
/**
 * Show the online/offline status.
 */
window.onlinestatus = function() {
    return navigator.onLine? (ui.isMobile()? showstatus('Online') : showstatus('Online')) : errorstatus('Offline');
};
/**
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
hosting/server/htdocs/public/notyet/index.html [156:224]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    $('viewfoot').innerHTML = config.viewfoot();
})();
/**
 * Initialize status message area.
 */
(function initstatus() {
    if (isNull($('status')))
        return;
    $('status').style.display = 'none';
    
    function divtransitionend(e) {
        e.target.style.display = 'none';
        e.target.className = ui.isMobile()? 'status3dm' : 'status3d';
        e.target.error = false;
    }
    $('status').addEventListener('webkitTransitionEnd', divtransitionend, false);
    $('status').addEventListener('transitionend', divtransitionend, false);
})();
/**
 * Show a status message.
 */
window.showstatus = function(s, c) {
    //debug('show status', s);
    if (isNull($('status')) || $('status').error)
        return s;
    $('status').innerHTML = '' + s + '';
    $('status').className = ui.isMobile()? 'status3dm' : 'status3d';
    $('status').style.display = 'block';
    $('status').error = c == 'errorstatus';
    if ($('status').delay)
        ui.cancelDelay($('status').delay);
    $('status').delay = ui.delay(function hidestatus() {
        $('status').className = ui.isMobile()? 'statusout3dm' : 'statusout3d';
        $('status').error = false;
    }, 3000);
    return s;
};
/**
 * Show an error message.
 */
window.errorstatus = function(s) {
    //debug('error', s);
    return showstatus(s, 'errorstatus');
};
/**
 * Show working status.
 */
window.workingstatus = function(w, c) {
    //debug('show working', w);
    if (isNull($('working')))
        return w;
    if (!ui.isMobile())
        $('working').style.top = ui.pixpos(Math.round(window.clientHeight / 2));
    $('working').style.display = w? 'block' : 'none';
    return w;
};
/**
 * Show the online/offline status.
 */
window.onlinestatus = function() {
    return navigator.onLine? (ui.isMobile()? showstatus('Online') : showstatus('Online')) : errorstatus('Offline');
};
/**
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -