Explorar el Código

Fixes "focus not available" notifications.

master
hristoterezov hace 10 años
padre
commit
81eb3754a0
Se han modificado 3 ficheros con 5 adiciones y 2 borrados
  1. 1
    2
      index.html
  2. 2
    0
      libs/app.bundle.js
  3. 2
    0
      modules/xmpp/moderator.js

+ 1
- 2
index.html Ver fichero

19
     <script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
19
     <script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
20
     <script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
20
     <script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
21
     <script src="interface_config.js?v=5"></script>
21
     <script src="interface_config.js?v=5"></script>
22
-    <script src="libs/app.bundle.js?v=14"></script>
23
-
22
+    <script src="libs/app.bundle.js?v=15"></script>
24
     <script src="analytics.js?v=1"></script><!-- google analytics plugin -->
23
     <script src="analytics.js?v=1"></script><!-- google analytics plugin -->
25
     <link rel="stylesheet" href="css/font.css?v=6"/>
24
     <link rel="stylesheet" href="css/font.css?v=6"/>
26
     <link rel="stylesheet" href="css/toastr.css?v=1">
25
     <link rel="stylesheet" href="css/toastr.css?v=1">

+ 2
- 0
libs/app.bundle.js Ver fichero

14824
                     APP.UI.messageHandler.notify(
14824
                     APP.UI.messageHandler.notify(
14825
                         null, "notify.focus",
14825
                         null, "notify.focus",
14826
                         'Conference focus', 'disconnected', "notify.focusFail",
14826
                         'Conference focus', 'disconnected', "notify.focusFail",
14827
+                        focusComponent + " not available - retry in " +
14828
+                            retrySec + " sec",
14827
                         {component: focusComponent, ms: retrySec});
14829
                         {component: focusComponent, ms: retrySec});
14828
                 }
14830
                 }
14829
                 // Reset response timeout
14831
                 // Reset response timeout

+ 2
- 0
modules/xmpp/moderator.js Ver fichero

308
                     APP.UI.messageHandler.notify(
308
                     APP.UI.messageHandler.notify(
309
                         null, "notify.focus",
309
                         null, "notify.focus",
310
                         'Conference focus', 'disconnected', "notify.focusFail",
310
                         'Conference focus', 'disconnected', "notify.focusFail",
311
+                        focusComponent + " not available - retry in " +
312
+                            retrySec + " sec",
311
                         {component: focusComponent, ms: retrySec});
313
                         {component: focusComponent, ms: retrySec});
312
                 }
314
                 }
313
                 // Reset response timeout
315
                 // Reset response timeout

Loading…
Cancelar
Guardar