forked from glitchdotcom/solari-board
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.79 KB
/
Copy pathindex.html
File metadata and controls
42 lines (38 loc) · 1.79 KB
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
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Solari Board Realtime Example</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Kelly+Slab" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz" rel="stylesheet" type="text/css">
<!-- jQuery, transit (for animations), date.js and the solari board -->
<script type="text/javascript" src="../js/jquery.min.js"></script>
<script type="text/javascript" src="../js/jquery.transit.min.js"></script>
<script type="text/javascript" src="../js/date.js"></script>
<script type="text/javascript" src="../js/solari.js"></script>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="../css/solari.css" />
<!-- Audio -->
<audio src="../audio/solari.mp3" id="solari-audio">
Your browser does not support the audio element.
</audio>
<script>
$(document).ready(function() {
URL = "liveFogbugz.py";
REFRESH_TIME = 30;
addSolariBoard();
});
</script>
<script src="/cgi-bin/example_realtime/refreshFogbugz.py">
// This forces one refresh on page load to start with the latest data
//
// A trigger must be configured in FogBugz to handle live updates
// 1) In the Settings menu (the gear icon), select URL Trigger
// 2) Select the Case Event types that should trigger an update to the Solari board
// 3) In URL, enter the web address to refreshFogbugz.py
// 4) Optional, define a Filter for only cases that apply to the Solari board
</script>
</head>
</html>