x5engine.boot

Manage the bootup queue.
Everytime you add a callback to the queue, it will be called as soon as the x5engine is ready after page loading.
It is really similar to the jQuery $(document).ready() method but with some extra features.

.push(fName, force, priority) ⇒ void

Add an element to the callback queue. The added element will be called as soon as the WSX5's JS engine is ready.
The callback will be called accordingly to the specified priority.

Kind: static method of x5engine.boot

Param Type Description
fName function | string The callback or function name to execute
force boolean True to add this element more than once if it's already set
priority number | string The priority from 0 (most important) to an infinite number (default 5). You can also define "first" and "last"

Example

// Simple loading
x5engine.boot.push(function () { alert('Hello World!'); });
// Do this first
x5engine.boot.push(function () { alert('Hello World!'); }, false, "first");