Object, containing Events API Public Methods - all other public methods are called against this object. (See example).
init example
var initOptions = {
/* See the Initialisation Options
section for guidance on the initialisation object.
*/
};
var eventOptions = {
readyListener: function () {
console.log("Learnosity Events API is ready");
},
errorListener: function (e) {
console.log('error', e);
}
};
var eventsApp = LearnosityEvents.init(initOptions, eventOptions);