-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.74 KB
/
index.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Loading...</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="s/css/style.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="s/js/swfobject.js"></script>
<script type="text/javascript" src="s/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="s/js/helperfunctions.js"></script>
<script type="text/javascript" src="s/js/player.js"></script>
<script type="text/javascript" src="s/js/playlist.js"></script>
<script type="text/javascript" src="s/js/widgets.js"></script>
<script type="text/javascript">
function init() {
Player.init(playerIsReady, playerHasError, playerStateChanged, playbackQualityChanged);
Playlist.init(videoLoaded);
}
</script>
</head>
<body onload="init()">
<div id="playercontainer">
<div id="matchName">Loading</div>
<div id="status">
<span id="curGame"></span>
<span id="curTime"></span>
</div>
<div id="player"><p>Flash Player is Required</p></div>
<div id="quality"></div>
<div id="controls">
<a id="muteButton" onclick="toggleMute()" href="javascript:void(0)">Mute</a>
<a onclick="Player.skip(-6)" href="javascript:void(0)"><< :06</a>
<a id="playButton" onclick="togglePause()" href="javascript:void(0)" class="active">Play</a>
<a onclick="Player.skip(30)" href="javascript:void(0)">:30 >></a>
<a onclick="Playlist.nextGame()" href="javascript:void(0)">Next Game</a>
</div>
</div>
</body>
</html>