|
@@ -1051,7 +1051,7 @@ UI.updateDTMFSupport = function (isDTMFSupported) {
|
1051
|
1051
|
* @returns {Promise} Resolved with value - false if the dialog is enabled and
|
1052
|
1052
|
* resolved with true if the dialog is disabled or the feedback was already
|
1053
|
1053
|
* submitted. Rejected if another dialog is already displayed. This values are
|
1054
|
|
- * used to display or not display the thank you dialog from
|
|
1054
|
+ * used to display or not display the thank you dialog from
|
1055
|
1055
|
* conference.maybeRedirectToWelcomePage method.
|
1056
|
1056
|
*/
|
1057
|
1057
|
UI.requestFeedbackOnHangup = function () {
|
|
@@ -1207,9 +1207,8 @@ UI.getLargeVideo = function () {
|
1207
|
1207
|
UI.showExtensionRequiredDialog = function (url) {
|
1208
|
1208
|
messageHandler.openMessageDialog(
|
1209
|
1209
|
"dialog.extensionRequired",
|
1210
|
|
- null,
|
1211
|
|
- APP.translation.generateTranslationHTML(
|
1212
|
|
- "dialog.firefoxExtensionPrompt", {url: url}));
|
|
1210
|
+ "dialog.firefoxExtensionPrompt",
|
|
1211
|
+ {url: url});
|
1213
|
1212
|
};
|
1214
|
1213
|
|
1215
|
1214
|
/**
|
|
@@ -1232,7 +1231,6 @@ UI.showExtensionExternalInstallationDialog = function (url) {
|
1232
|
1231
|
messageHandler.openTwoButtonDialog({
|
1233
|
1232
|
titleKey: 'dialog.externalInstallationTitle',
|
1234
|
1233
|
msgKey: 'dialog.externalInstallationMsg',
|
1235
|
|
- msgString: '',
|
1236
|
1234
|
leftButtonKey: 'dialog.goToStore',
|
1237
|
1235
|
submitFunction,
|
1238
|
1236
|
loadedFunction: $.noop,
|
|
@@ -1379,8 +1377,7 @@ UI.showTrackNotWorkingDialog = function (stream) {
|
1379
|
1377
|
messageHandler.openMessageDialog(
|
1380
|
1378
|
"dialog.error",
|
1381
|
1379
|
stream.isAudioTrack()? "dialog.micNotSendingData" :
|
1382
|
|
- "dialog.cameraNotSendingData",
|
1383
|
|
- null);
|
|
1380
|
+ "dialog.cameraNotSendingData");
|
1384
|
1381
|
};
|
1385
|
1382
|
|
1386
|
1383
|
UI.updateDevicesAvailability = function (id, devices) {
|