includes/clientside/static/loader.js
author Dan
Thu, 29 Jul 2010 11:53:15 -0400
changeset 1269 35986c6b2150
parent 1227 bdac73ed481e
permissions -rw-r--r--
Added template hooks in the JS template compiler. Attach to thook_<template hook name>. Use Echo() to echo HTML; access compiler instance with Template.tpl_{strings,bool}, etc.

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