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