-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSampleSetups.html
More file actions
51 lines (48 loc) · 1.77 KB
/
SampleSetups.html
File metadata and controls
51 lines (48 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript">
function printSetup(filename)
{
$.get(filename, function(data) {
$("#area").html(JSON.stringify(data, null, 4));
});
}
</script>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<nav class="navbar navbar-default" >
<div class="container-fluid" >
<div class="navbar-header">
<a class="navbar-brand" href="#">[kick] Raid Utilities</a>
</div>
<ul class="nav navbar-nav">
<li><a href="composer.html">Raid Composer</a></li>
<li><a href="DynamicFoodCalcV2.html">Food Calc</a></li>
<li class="active"><a href="SampleSetups.html">Sample Setups</a></li>
</ul>
</div>
</nav>
<div class="row" style="height: 80%">
<div class="col-md-2"></div>
<div class="col-md-8">
<textarea id="area" style="width:100%; height: 400px">
</textarea>
</div>
<div class="col-md-2"></div>
</div>
<nav>
<ul class="pagination">
<li onclick="printSetup('VGGVSAB_kick_01.json')"><a href="#" >Setup 1(VG + GV + SAB)</a></li>
</ul>
</nav>
</body>
</html>