The X Toolkit API

X.X

This class has no public members.

/**
* Can be used to check if the XTK library was compiled.
*
* 
* if (X.DEV === undefined) {
*   // xtk was compiled
* }
* 
*
* @type {boolean}
*/
X.X.DEV();
/**
* Timer functionality which can be used in developer mode to clock certain
* things.
*
* 
* X.TIMER(this._classname+'.functionname');
*
* ... stuff is happening
* 
*
* @param {string} what The title of this timer.
*/
X.X.TIMER($WHAT);
/**
* Timer functionality which can be used in developer mode to clock certain
* things.
*
* 
* ... stuff was happening
*
* X.TIMERSTOP(this._classname+'.functionname');
* 
*
* @param {string} what The title of this timer.
*/
X.X.TIMERSTOP($WHAT);


CONSTRUCTORS

PROPERTIES

GETTERS/SETTERS

FUNCTIONS

STATIC
DEV
TIMER
TIMERSTOP



SOURCECODE