|
@@ -732,6 +732,22 @@ UI.notifyConnectionFailed = function (stropheErrorMsg) {
|
732
|
732
|
);
|
733
|
733
|
};
|
734
|
734
|
|
|
735
|
+
|
|
736
|
+/**
|
|
737
|
+ * Notify user that max users limit is already reached.
|
|
738
|
+ */
|
|
739
|
+UI.notifyMaxUsersLimitReached = function () {
|
|
740
|
+ var title = APP.translation.generateTranslationHTML(
|
|
741
|
+ "dialog.error");
|
|
742
|
+
|
|
743
|
+ var message = APP.translation.generateTranslationHTML(
|
|
744
|
+ "dialog.maxUsersLimitReached");
|
|
745
|
+
|
|
746
|
+ messageHandler.openDialog(
|
|
747
|
+ title, message, true, {}, function (e, v, m, f) { return false; }
|
|
748
|
+ );
|
|
749
|
+};
|
|
750
|
+
|
735
|
751
|
/**
|
736
|
752
|
* Notify user that he was automatically muted when joned the conference.
|
737
|
753
|
*/
|