includes/clientside/static/loader.js
author Dan
Sat, 12 Dec 2009 15:43:23 -0500
changeset 1159 a1cca4472a58
parent 588 20484deb89cd
child 1227 bdac73ed481e
permissions -rw-r--r--
Set up more sensible defaults (UTC, DST off) for timezone preferences. Also modified enano_date() to properly include GMT offsets when timezone characters are used. Fixes issue 4.

// Some final stuff - loader routines, etc.

var onload_complete = false;

function mdgInnerLoader(e)
{
  window.onkeydown = isKeyPressed;
  window.onkeyup = function(e) { isKeyPressed(e); };
  
  if ( typeof(dbx_set_key) == 'function')
  {
    dbx_set_key();
  }
  
  runOnloadHooks(e);
}

// Enano's main init function.
function enano_init(e)
{
  mdgInnerLoader(e);
  
  // we're loaded; set flags to true
  console.info('Enano::JS runtime: system init complete');
  onload_complete = true;
}

// don't init the page if less than IE6
if ( typeof(KILL_SWITCH) == 'boolean' && !KILL_SWITCH )
{
  window.onload = enano_init;
}