bigbluebutton-Github/bigbluebutton-html5/client/main.html
prlanzarin f43b77c19f Merge branch 'node-bbb-apps-packaging' into bbb-webrtc-sfu
Conflicts:
	bigbluebutton-html5/imports/startup/client/base.jsx
	bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx
	bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx
	bigbluebutton-html5/imports/ui/components/app/container.jsx
	bigbluebutton-html5/imports/ui/components/screenshare/service.js
	bigbluebutton-html5/imports/ui/components/video-dock/component.jsx
	bigbluebutton-html5/imports/ui/components/video-dock/container.jsx
	bigbluebutton-html5/private/locales/en.json bigbluebutton-html5/server/main.js
2017-11-11 03:41:37 +00:00

64 lines
1.7 KiB
HTML
Executable File

<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BBB - HTML5 Client</title>
<style>
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
font-family: 'Source Sans Pro', Arial, sans-serif;
font-size: 1rem; /* 16px */
background-color: #06172A;
}
a {
color: inherit;
}
#app {
height: 100vh;
width: 100vw;
overflow: hidden;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}
[hidden]:not([hidden="false"]) {
display: none !important;
}
</style>
</head>
<body style="background-color: #06172A">
<div id="app" role="document"></div>
<script src="/client/lib/bowser.js"></script>
<script src="/client/lib/sip.js"></script>
<script src="/client/lib/bbb_webrtc_bridge_sip.js"></script>
<script src="/client/lib/bbblogger.js"></script>
<script src="/client/lib/jquery.json-2.4.min.js"></script>
<script src="/client/lib/verto-min.js"></script>
<script src="/client/lib/verto_extension.js"></script>
<!--
TODO: find a better way to include this
Libs needed for kurento clientside communication.
-->
<script src="/html5client/js/bower_components/reconnectingWebsocket/reconnecting-websocket.js"></script>
<script src="/html5client/js/bower_components/adapter.js/release/adapter.js"></script>
<script src="/html5client/js/bower_components/kurento-utils/dist/kurento-utils.js"></script>
<script src="/html5client/js/adjust-videos.js"></script>
<script src="/client/lib/kurento-extension.js"></script>
</body>