-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathedit_config.html
More file actions
57 lines (50 loc) · 2.21 KB
/
edit_config.html
File metadata and controls
57 lines (50 loc) · 2.21 KB
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
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FLASH Interface - Edit Params</title>
<link rel="stylesheet" href="foundation_framework/css/normalize.css">
<link rel="stylesheet" href="foundation_framework/css/foundation.min.css">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<script src="foundation_framework/js/vendor/modernizr.js"></script>
</head>
<body>
<div class="sticky">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="#">FLASH Interface</a></h1>
</li>
<li class="divider"></li>
<li class="toggle-topbar menu-icon"><a href="#"><span>menu</span></a></li>
</ul>
<section class="top-bar-section">
<ul id="subject_zone" class="right">
<li class="divider"></li>
</ul>
</nav>
</div>
<div id="action_zone" class="panel small-5 small-left large-6 right columns radius">
<h3 id="active_variable_name">Click on a variable name to view its description </h3>
<p id="active_variable_description"></p>
<label>
Search variables:
<input id="searchbox" type="text" placeholder="enter a variable name (i.e eosMode)" />
<div id="results_zone"> </div>
</label>
</div>
<div class="display_zone small-6 large-6 columns">
<div id="config_form">
</div>
</div>
<a id="go-to-settings" href="./settings.html"></a>
<script>window.$ = window.jQuery = require('./foundation_framework/js/vendor/jquery.js');</script>
<script src="foundation_framework/js/vendor/jquery.js"></script>
<script src="foundation_framework/js/foundation.min.js"></script>
<script src="./js/utils.js"></script>
<script src="./js/config_manager.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>