-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (67 loc) · 3.24 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
<html>
<head>
<title>meetingcost.io</title>
<meta name="og:title" property="og:title" content="meetingcost.io" />
<meta name="og:description" property="og:description" content="A timer tool for calculating meeting cost" />
<meta name="og:url" property="og:url" content="http://meetingcost.io" />
<meta name="og:site_name" property="og:site_name" content="meetingcost.io" />
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="libs/jquery.timer/jquery.timer.js"></script>
<script src="libs/jquery.fittext/jquery.fittext.js"></script>
<script src="libs/dragdealer/dragdealer.js"></script>
<script src="libs/purl/purl.js"></script>
<script src="meeting.js"></script>
<link href="http://fonts.googleapis.com/css?family=Ropa+Sans" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet" type="text/css">
<link href="libs/dragdealer/dragdealer.css" rel="stylesheet" type="text/css">
<link href="meeting.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1, minimal-ui">
</head>
<body>
<div class="header">
<div class="left">
<i class="fa fa-lg fa-coffee"></i> <span class="fat">Meetingcost.io</span> by <a href="http://henricenglund.se">Henric Englund</a>
</div>
<div class="right">
<a href="https://github.com/hnrc/meetingcost">Fork me at GitHub <i class="fa fa-lg fa-github"></i></a>
</div>
</div>
<div class="slider">
Attendees:
<div id="attendees-slider" class="dragdealer">
<div class="handle orange-bar"><span class="value"></span></div>
</div>
</div>
<div class="slider">
Average cost/hour:
<div id="cost-slider" class="dragdealer">
<div class="handle orange-bar"><span class="value"></span></div>
</div>
</div>
<div class="cost">
Current cost:
<div id="current">0</div>
</div>
<div class="control">
<input type="submit" value="Start/Pause" class="button" onclick="Cost.Timer.toggle()">
</div>
<div class="wat">
<strong>– What is this? I don't even...</strong>
<p>
This is a nifty timer tool for measuring the cost of inefficient meetings. The idea came from a comment in the Hacker News thread '<a href="https://news.ycombinator.com/item?id=7617099">Ask HN: Idea Sunday</a>'.
</p>
</div>
<div class="wat">
<strong>Protip:</strong> Query parameters <code>cost</code> and <code>attendees</code> are available for easy bookmarking, i.e. <a href="?cost=1337&attendees=42"><code>?cost=1337&attendees=42</code></a>. Thanks <a href="http://twitter.com/kubek2k/status/459398765942964224" target="_blank">Jakub!</a>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-50200627-1', 'meetingcost.io');
ga('send', 'pageview');
</script>
</body>
</html>