Updates Temasys adapter.screenshare.js. Browser restart is no longer required after plugin install.
This commit is contained in:
parent
4b8bc398dd
commit
4c4e99c51a
|
@ -1,4 +1,4 @@
|
|||
/*! adapterjs - v0.11.0 - 2015-06-08 */
|
||||
/*! adapterjs - v0.11.1 - 2015-07-28 */
|
||||
|
||||
// Adapter's interface.
|
||||
var AdapterJS = AdapterJS || {};
|
||||
|
@ -17,7 +17,7 @@ AdapterJS.options = AdapterJS.options || {};
|
|||
// AdapterJS.options.hidePluginInstallPrompt = true;
|
||||
|
||||
// AdapterJS version
|
||||
AdapterJS.VERSION = '0.11.0';
|
||||
AdapterJS.VERSION = '0.11.1';
|
||||
|
||||
// This function will be called when the WebRTC API is ready to be used
|
||||
// Whether it is the native implementation (Chrome, Firefox, Opera) or
|
||||
|
@ -340,9 +340,21 @@ AdapterJS.renderNotificationBar = function (text, buttonText, buttonLink, openNe
|
|||
try {
|
||||
event.cancelBubble = true;
|
||||
} catch(error) { }
|
||||
});
|
||||
}
|
||||
else {
|
||||
|
||||
var pluginInstallInterval = setInterval(function(){
|
||||
if(! isIE) {
|
||||
navigator.plugins.refresh(false);
|
||||
}
|
||||
AdapterJS.WebRTCPlugin.isPluginInstalled(
|
||||
AdapterJS.WebRTCPlugin.pluginInfo.prefix,
|
||||
AdapterJS.WebRTCPlugin.pluginInfo.plugName,
|
||||
AdapterJS.WebRTCPlugin.defineWebRTCInterface,
|
||||
function() { //Does nothing because not used here
|
||||
});
|
||||
} , 500);
|
||||
});
|
||||
|
||||
}else {
|
||||
c.document.close();
|
||||
}
|
||||
AdapterJS.addEvent(c.document, 'click', function() {
|
||||
|
|
Loading…
Reference in New Issue