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"/>
|
<link rel="stylesheet" href="css/all.css"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="closeMessage">Thank you for your feedback!</div>
|
<div class="redirectPageMessage">Thank you for your feedback!</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -401,6 +401,13 @@ class ConferenceConnector {
|
||||||
}
|
}
|
||||||
break;
|
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:
|
case ConferenceErrors.VIDEOBRIDGE_NOT_AVAILABLE:
|
||||||
APP.UI.notifyBridgeDown();
|
APP.UI.notifyBridgeDown();
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -5,7 +5,7 @@ html, body {
|
||||||
background: $defaultBackground;
|
background: $defaultBackground;
|
||||||
}
|
}
|
||||||
|
|
||||||
.closeMessage {
|
.redirectPageMessage {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 36px;
|
font-size: 36px;
|
||||||
margin-top: 20%;
|
margin-top: 20%;
|
|
@ -42,7 +42,7 @@
|
||||||
@import 'device_settings_dialog';
|
@import 'device_settings_dialog';
|
||||||
@import 'jquery.contextMenu';
|
@import 'jquery.contextMenu';
|
||||||
@import 'keyboard-shortcuts';
|
@import 'keyboard-shortcuts';
|
||||||
@import 'close';
|
@import 'redirect_page';
|
||||||
|
|
||||||
|
|
||||||
/* Modules END */
|
/* Modules END */
|
Loading…
Reference in New Issue