commit
76f8ca2116
|
@ -0,0 +1,8 @@
|
|||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" href="css/all.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="redirectPageMessage">Sorry! You are not allowed to be here :(</div>
|
||||
</body>
|
||||
</html>
|
|
@ -3,6 +3,6 @@
|
|||
<link rel="stylesheet" href="css/all.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="closeMessage">Thank you for your feedback!</div>
|
||||
<div class="redirectPageMessage">Thank you for your feedback!</div>
|
||||
</body>
|
||||
</html>
|
|
@ -401,6 +401,13 @@ class ConferenceConnector {
|
|||
}
|
||||
break;
|
||||
|
||||
case ConferenceErrors.NOT_ALLOWED_ERROR:
|
||||
{
|
||||
// let's show some auth not allowed page
|
||||
window.location.pathname = "authError.html";
|
||||
}
|
||||
break;
|
||||
|
||||
case ConferenceErrors.VIDEOBRIDGE_NOT_AVAILABLE:
|
||||
APP.UI.notifyBridgeDown();
|
||||
break;
|
||||
|
|
|
@ -5,7 +5,7 @@ html, body {
|
|||
background: $defaultBackground;
|
||||
}
|
||||
|
||||
.closeMessage {
|
||||
.redirectPageMessage {
|
||||
text-align: center;
|
||||
font-size: 36px;
|
||||
margin-top: 20%;
|
|
@ -42,7 +42,7 @@
|
|||
@import 'device_settings_dialog';
|
||||
@import 'jquery.contextMenu';
|
||||
@import 'keyboard-shortcuts';
|
||||
@import 'close';
|
||||
@import 'redirect_page';
|
||||
|
||||
|
||||
/* Modules END */
|
Loading…
Reference in New Issue