Global

Type Definitions

errorCallback()

This Callback will be fired in case of an exception. If no errorCallback is registered, oaJsApi will console.error to console. Arguments can be different, depends who calls the error handler. Could be catch block of javascript or WinCCOA.
Source:
Example
oaJsApi.registerListeners({
 error: function()
 {
   console.error(arguments);
 }
});