-
Notifications
You must be signed in to change notification settings - Fork 65
/
index-debug.html
39 lines (34 loc) · 1.43 KB
/
index-debug.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8;">
<title>Paella Engage Example</title>
<script type="text/javascript" src="javascript/polyfill.min.js"></script>
<script type="text/javascript" src="build/player/javascript/jquery.min.js"></script>
<script>
try {
$ = jQuery = module.exports;
} catch(e) {}
</script>
<script type="text/javascript" src="build/player/javascript/lunr.min.js"></script>
<script type="text/javascript" src="build/player/javascript/require.js"></script>
<script type="text/javascript" src="paella-debug.js"></script>
<link rel="stylesheet" href="build/player/resources/bootstrap/css/bootstrap.min.css" type="text/css" media="screen" charset="utf-8">
<style>
.paella-debug-tools {
position: fixed;
left: 0px;
top: 0px;
z-index: 1000000;
}
</style>
</head>
<body id="body" onload="loadPaellaDebug('playerContainer',{ url:'repository_test/repository/', configUrl:'build/player/config/config.json', dictionaryUrl:'build/player/localization/paella' })">
<div id="playerContainer" style="display:block;width:100%">
</div>
<div class="paella-debug-tools">
<select id="videoSelector">
</select>
</div>
</body>
</html>