forked from stevep99/keyboard-layout-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·198 lines (172 loc) · 8.06 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!doctype html>
<html ng-app="kla">
<head>
<meta charset="utf-8">
<link rel="icon" type="image/png" href="./img/kb-q-10.png">
<title>Keyboard Layout Analyzer – by PAT or JK, SteveP and Spray</title>
<!--
source code: https://github.com/NSUSpray/keyboard-layout-analyzer
-->
<!-- vendor css -->
<link href="./vendor/bootstrap-flat/bootstrap.css" rel="stylesheet">
<link href="./vendor/jqplot/jquery.jqplot.min.css" rel="stylesheet">
<!-- app css -->
<link rel="stylesheet" type="text/css" href="main.css?2013.12" />
<link rel="stylesheet" type="text/css" href="kb-config.css?2013" />
<link href="./keyboard/keyboard.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-164160035-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-164160035-1');
</script>
</head>
<body>
<div class="navbar navbar-fixed-top" style='z-index:1001;'>
<div class="navbar-inner">
<div class="container">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<!-- Be sure to leave the brand out there if you want it shown -->
<div class="brand" style='position:relative'>
<div style='position:absolute; top:7px'>
<img src='img/kb-q-10.png'>
</div>
<div style='margin-left:40px'>
<span style="font-weight:bold">Keyboard Layout Analyzer</span>
</div>
</div>
<!-- Everything you want hidden at 940px or less, place within here -->
<div class="nav-collapse collapse">
<!-- .nav, .navbar-search, .navbar-form, etc -->
<ul class="nav pull-left">
<li navbar-link>
<a href="#/config" title="Open layout editor (Alt+1)">⌨ Layouts</a>
</li>
<li navbar-link>
<a href="#/main" title="Open analyzer preferences (Alt+2)">🛠 Analyzer</a>
</li>
<li navbar-link id="results-navbar-link" class="invisible" title="Open analysis results (Alt+3)">
<a href="#/results">🏆 Results</a>
</li>
</ul>
</div>
<ul class="nav pull-right">
<li navbar-link>
<a href="#/about">🛈 About</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="view-container" class="container">
<div id='view'
class='page'
ng-view=""
ng-cloak></div>
<div id='kla-loading' class='text-center ng-cloak'>
<p>
<img src='img/loading_keyboard.png'/>
</p>
<p>
<img src='img/loading2.gif'>
</p>
Loading, one moment please…
</div>
</div>
<div id='newsModal' class='modal hide fade' tabindex='-1' role='dialog' aria-labelledby='resultLabel' aria-hidden='true'>
<div class='modal-header'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h3 id='resultLabel'>News</h3>
</div>
<div class='modal-body'>
</div>
<div class='modal-footer'>
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
<div id='aboutModal' class='modal hide fade' tabindex='-1' role='dialog' aria-labelledby='resultLabel' aria-hidden='true'>
<div class='modal-header'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h3 id='resultLabel'>About</h3>
</div>
<div class='modal-body'>
This application allows you to compare layouts. See the About section for more details.
</div>
<div class='modal-footer'>
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
<div id='footer'>
<div id='footer-col-set'>
<div class='footer-col'>
<div class='footer-col-header'>Original application and other forks</div>
<div class='footer-col-fixed-width'>
<ul>
<li>
<a href='http://patorjk.com/keyboard-layout-analyzer/'>Original KLA</a> by PAT or JK
</li>
<li>
<a href='https://stevep99.github.io/keyboard-layout-analyzer/'>Parent KLA</a> by SteveP
</li>
<li>
<a href='https://klanext.keyboard-design.com/'>KLAnext</a> by Den & Ian
</li>
</ul>
</div>
</div>
<div class='footer-col'>
<div class='footer-col-header'>Resources and feedback</div>
<div class='footer-col-fixed-width'>
<ul>
<li>
<a href='https://keyboard-design.com/internet-letter-layout-db.html'>Keyboard Layout Database</a>
</li>
<li>
<a href='https://github.com/NSUSpray/keyboard-layout-analyzer/issues'>Report a bug</a> | <a href='https://github.com/NSUSpray/keyboard-layout-analyzer'>GitHub repo</a>
</li>
<li>
<a href='https://vk.com/nsu.spray'>Spray’s social</a>
</li>
</ul>
</div>
</div>
</div>
</div> <!-- end footer -->
<!-- Vendor Scripts -->
<script src="./vendor/jquery-1.9.1.min.js"></script>
<script src='./vendor/jqplot/jquery.jqplot.min.js'></script>
<script src="./vendor/jqplot/plugins/jqplot.pieRenderer.min.js"></script>
<script src="./vendor/jqplot/plugins/jqplot.barRenderer.min.js"></script>
<script src="./vendor/jqplot/plugins/jqplot.categoryAxisRenderer.min.js"></script>
<script src="./vendor/jqplot/plugins/jqplot.pointLabels.min.js"></script>
<script src='./vendor/heatmap.js'></script>
<script src="./vendor/bootstrap-flat/bootstrap.min.js"></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angular.min.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angular-route.min.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angular-animate.min.js'></script>
<!--<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.1.4/angular.min.js'></script>-->
<!-- Custom GUI -->
<script src="./keyboard/kb.js"></script>
<script src="./keyboard/default_layouts.js"></script>
<script src="./keyboard/key.js"></script>
<script src="./keyboard/key-dialog.js"></script>
<script src="./keyboard/keyboard.js"></script>
<!-- App Scripts -->
<script src="js/app.js?2021.04.30"></script>
<script src="js/analyzer.js?2021.04.30"></script>
<script src="js/build/services.js?2021.04.30"></script>
<script src="js/build/controllers.js?2021.04.30"></script>
<script src="js/build/filters.js?2021.04.30"></script>
<script src="js/build/directives.js?2021.04.30"></script>
<script src="js/build/templates.js?2021.04.30"></script>
<!--<script src="js/animations.js"></script>-->
</body>
</html>