cordova-plugin-pixlive
Version:
PixLive SDK plugin for Cordova based hybrid apps
9 lines (8 loc) • 375 B
JavaScript
require('cordova/channel').onCordovaReady.subscribe(function () {
require('cordova/exec')(eventHandler, null, 'PixLive', 'installEventHandler', []);
function eventHandler(message) {
if (window.cordova.plugins.PixLive && window.cordova.plugins.PixLive.onEventReceived) {
window.cordova.plugins.PixLive.onEventReceived(message);
}
}
});