-
Notifications
You must be signed in to change notification settings - Fork 36
/
index.html
103 lines (90 loc) · 3.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Meeting Ticker</title>
<script src="js/jquery-1.6.3.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.7.2.core.min.js" type="text/javascript"></script>
<script src="js/jquery.watermark.js" type="text/javascript"></script>
<script src="js/jquery.clockpick.1.2.1.packed.js" type="text/javascript"></script>
<script src="js/jquery.validate.min.js" type="text/javascript"></script>
<script src="js/odometer/jquery.odometer.js" type="text/javascript"></script>
<script src="js/meeting-ticker.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/clockpick.css"
type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="css/odometer.css"
type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="css/style.css"
type="text/css" media="screen" charset="utf-8" />
</head>
<body>
<div id="form">
<form class="setup ticker" accept-charset="utf-8" action="#">
<dl>
<dt><label for="attendees">Number of Attendees:</label></dt>
<dd>
<input id="attendees"
class="watermark"
tabindex="1"
type="text" name="attendees"
value="" title="count" />
</dd>
<dt>
<label for="hourly_rate">Average Hourly Rate:</label>
<p class="small">
Be sure to include overhead costs like facilities and benefits.
</p>
</dt>
<dd>
<select name="units" tabindex="3">
<option value="$" selected="selected">$</option>
<option value="pound">£</option>
<option value="euro">€</option>
<option value="yen">¥</option>
<option value="Kr">Kr</option>
</select>
<input id="hourly_rate"
class="watermark" type="text"
tabindex="2"
name="hourly_rate" value="" title="guess (200?)" />
</dd>
<dt><label for="start_time">The Meeting started at:</label></dt>
<dd>
<input id="start_time" type="text"
name="start_time" value="" tabindex="4"/>
</dd>
</dl>
<p><input type="submit" value="Start →"></p>
</form>
<div class="notes">
<p>Written by Toby Tripp, Lydia Tripp, and <a href="http://www.royhere.com">Roy Kolak</a>.</p>
<p>Fork this project
on <a href="http://github.com/tobytripp/meeting-ticker/">GitHub</a>.</p>
<p>Report any issues or ideas to the
<a href="https://github.com/tobytripp/meeting-ticker/issues">issue tracker</a>.</p>
<p class="small">If this works in Internet Explorer, it is purely by accident.</p>
</div>
</div>
<div id="display">
<h1>This Meeting Has Cost</h1>
<div class="odometer"></div>
<p id="started_at" class="small"></p>
<form class="stop" action="#">
<input type="submit" value="stop the bleeding">
</form>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19174339-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
$( function() { $(".ticker").meetingTicker(); });
</script>
</body>
</html>