-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (75 loc) · 3.25 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
<!DOCTYPE html>
<!--
Copyright (C) 2015 by Roger E Critchlow Jr, Santa Fe, NM, USA.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-->
<html>
<head>
<title>Morse Mimic</title>
<!-- this tells chrome to let me respond to size -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- this tells chrome that we can install as an app -->
<meta name="mobile-web-app-capable" content="yes">
<!-- this tells chrome to use the supplied color for the toolbar -->
<meta name="theme-color" content="rgb(79, 125, 201)">
<!-- this tells chrome to fetch my app manifest -->
<link rel="manifest" href="manifest.json">
<!-- this selects the preferred icon size -->
<link rel="icon" sizes="192x192" href="assets/icon_192.png">
<!-- the webcomponent polyfill for non-compliant browsers -->
<script src="bower_components/webcomponentsjs/webcomponents.js"></script>
<!-- the application sources -->
<link rel="import" href="components/morse-station.html">
<link rel="import" href="components/morse-app.html">
<link rel="import" href="components/morse-mimic.html">
<link rel="import" href="components/morse-output.html">
<link rel="import" href="components/morse-input.html">
<link rel="import" href="components/morse-settings.html">
<link rel="import" href="components/morse-scope.html">
<style>
body {
font-family: RobotoDraft, sans-serif;
color: #333;
margin: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
}
</style>
</head>
<body unresolved fullbleed layout vertical>
<morse-station id="station" ></morse-station>
<morse-app selected="Mimic">
<paper-item label="Mimic" layout center>Mimic</paper-item>
<morse-mimic label="Mimic"></morse-mimic>
<paper-item label="Output" layout center>Output</paper-item>
<morse-output label="Output"></morse-output>
<paper-item label="Input" layout center>Input</paper-item>
<morse-input label="Input"></morse-input>
<paper-item label="Settings" layout center>Settings</paper-item>
<morse-settings label="Settings"></morse-settings>
<paper-item label="Scope" layout center>Scope</paper-item>
<morse-scope label="Scope"></morse-scope>
</morse-app>
</body>
</html>
<!-- Local Variables: -->
<!-- mode: web -->
<!-- indent-tabs-mode: t -->
<!-- web-mode-markup-indent-offset: 2 -->
<!-- web-mode-css-indent-offset: 2 -->
<!-- web-mode-code-indent-offset: 2 -->
<!-- End: -->