-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
102 lines (91 loc) · 3.54 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>FIAS Calculator</title>
<meta name="description" content="Quick questionaire to calculate the FIAS Calculator.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
<link rel="stylesheet" href="css/main.css?v=1">
<style>
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="/">FIAS Calculator</a>
</div>
</div>
</div>
<a href="https://github.com/harvesthq/fias"><img style="position: absolute; top: 0; right: 0; border: 0; z-index:1032" src="https://camo.githubusercontent.com/652c5b9acfaddf3a9c326fa6bde407b87f7be0f4/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6f72616e67655f6666373630302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png"></a>
<div class="container">
<div class="row">
<div class="span3">
<input type="text" value="1" data-dial="0" data-message-id="message1" />
</div>
<div class="span8">
<h2>How much of the app is affected?</h2>
<div class="row">
<div id="message1" class="lead alert alert-success span6">
Equivalent to a single partial
</div>
</div>
</div>
</div>
<div class="row">
<div class="span3">
<input type="text" value="1" data-dial="1" data-message-id="message2" />
</div>
<div class="span8">
<h2>How much of this change is mysterious to you?</h2>
<div class="row">
<div id="message2" class="lead alert alert-warning span6">
I understand what it's doing, but I'm not 100% sure about parts
</div>
</div>
</div>
</div>
<div class="row">
<div class="span3">
<input type="text" value="1" data-dial="2" data-message-id="message3"/>
</div>
<div class="span8">
<h2>How easy is it for you to imagine this performs in an unexpected way after deployment?</h2>
<div class="row">
<div id="message3" class="lead alert alert-error span6">
I can imagine about 400 ways this blows up.
</div>
</div>
</div>
</div>
<div class="row">
<div class="span4">
<input type="text" value="14" id="final-score" data-message-id="final-message" />
</div>
<div class="span5">
<span class="help-inline">Github Badge</span>
<div class="input-append">
<textarea rows="3" id="final-message" class="github-badge input-xxlarge uneditable-input">[FIAS Score:7/7/9=23](http://google.com?foo=1)</textarea>
</div>
<div style="position:relative" id="final-copy-btn-div">
<button id="final-copy-btn" class="btn btn-primary btn-large" title="Click to copy me." data-clipboard-target="#final-message">
Copy to Clipboard
</button>
</div>
</div>
</div>
</div> <!-- /container -->
</body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="js/clipboard.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.knob.js"></script>
<script src="js/main.js"></script>
<script>
$(function() {
new FIASCalculator();
});
</script>
</html>