Fixes "focus not available" notifications.
This commit is contained in:
parent
d260f1db61
commit
81eb3754a0
|
@ -19,8 +19,7 @@
|
|||
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
||||
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
||||
<script src="interface_config.js?v=5"></script>
|
||||
<script src="libs/app.bundle.js?v=14"></script>
|
||||
|
||||
<script src="libs/app.bundle.js?v=15"></script>
|
||||
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
||||
<link rel="stylesheet" href="css/font.css?v=6"/>
|
||||
<link rel="stylesheet" href="css/toastr.css?v=1">
|
||||
|
|
|
@ -14824,6 +14824,8 @@ var Moderator = {
|
|||
APP.UI.messageHandler.notify(
|
||||
null, "notify.focus",
|
||||
'Conference focus', 'disconnected', "notify.focusFail",
|
||||
focusComponent + " not available - retry in " +
|
||||
retrySec + " sec",
|
||||
{component: focusComponent, ms: retrySec});
|
||||
}
|
||||
// Reset response timeout
|
||||
|
|
|
@ -308,6 +308,8 @@ var Moderator = {
|
|||
APP.UI.messageHandler.notify(
|
||||
null, "notify.focus",
|
||||
'Conference focus', 'disconnected', "notify.focusFail",
|
||||
focusComponent + " not available - retry in " +
|
||||
retrySec + " sec",
|
||||
{component: focusComponent, ms: retrySec});
|
||||
}
|
||||
// Reset response timeout
|
||||
|
|
Loading…
Reference in New Issue