setHandlers

JavaScript API reference for Interactive Video Viewer

setHandlers(handlers)

Specifies zero or more callback handlers. A call to this method fully overwrites event handlers that were previously assigned for that viewer instance. Must be called before init().

Parameter

handlers

{Object} JSON object with viewer event callbacks, where the property name is the name of the supported viewer event and the property value is a JavaScript function reference to an appropriate callback.

See Event callbacks for more information about viewer events.

Returns

None.

Example

<instance>.setHandlers({
 "initComplete":function() {
  console.log("init complete");
}
})

On this page