handle event FIREFOX_EXTENSION_NEEDED
This commit is contained in:
parent
b3f8d8fcd3
commit
3f099ebb0a
|
@ -496,6 +496,10 @@ export default {
|
|||
APP.UI.updateDTMFSupport(isDTMFSupported);
|
||||
});
|
||||
|
||||
room.on(ConferenceEvents.FIREFOX_EXTENSION_NEEDED, function (url) {
|
||||
APP.UI.notifyFirefoxExtensionRequired(url);
|
||||
});
|
||||
|
||||
APP.UI.addListener(UIEvents.ROOM_LOCK_CLICKED, () => {
|
||||
if (room.isModerator()) {
|
||||
let promise = roomLocker.isLocked
|
||||
|
|
|
@ -621,7 +621,7 @@ UI.notifyFirefoxExtensionRequired = function (url) {
|
|||
null,
|
||||
null,
|
||||
APP.translation.generateTranslationHTML(
|
||||
"dialog.firefoxExtensionPrompt", {url: url}
|
||||
"dialog.firefoxExtensionPrompt", {url}
|
||||
)
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue