If I want to implement theAdapterJS.WebRTCPlugin.pluginNeededButNotInstalledCb callback the source code says that it needs to be overridden but what I don't want to do is to end up using a custom AdapterJS version. Also it would be nice to be able to pass options. For example like this:
window.AdapterJS = {
options: {
hidePluginInstallPrompt: true
},
WebRTCPlugin: {
pluginNeededButNotInstalledCb: function() {
//Do something when the plugin is not installed
}
}
};