-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
executable file
·64 lines (59 loc) · 2.3 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
<head>
<title>documentation</title>
<script src="javascripts/lib/jquery.js"></script>
<script src="javascripts/lib/json2.js"></script>
<script src="javascripts/lib/underscore.js"></script>
<script src="javascripts/lib/backbone.js"></script>
<script src="javascripts/lib/bootstrap-tooltip.js"></script>
<script src="javascripts/lib/bootstrap-popover.js"></script>
<script src="javascripts/lib/bootstrap-alert.js"></script>
<link rel="stylesheet" href="stylesheets/bootstrap.min.css">
<script src="javascripts/jStorage/jstorage.js"></script>
<script src="javascripts/btapp/plugin.btapp.js"></script>
<script src="javascripts/btapp/pairing.btapp.js"></script>
<script src="javascripts/btapp/client.btapp.js"></script>
<script src="javascripts/btapp/btapp.js"></script>
<script src="javascripts/index.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="stylesheets/application.css"></link>
</head>
<body>
<script type="text/template" id="content_template">
<div class="url">
<h4>Path:<p> <%= path %> </p></h4>
</div>
<div class="variables"></div>
<div class="functions"></div>
</script>
<script type="text/template" id="attribute_template"><pre><p><span><%= key %>: </span><%= value %></p><form class="well form-inline"><input type="text" class="input-large" placeholder="<%= value %>"><button type="submit" class="btn">Set</button></form><div class="alert"></div></pre></script>
<script type="text/template" id="attributes_template">
<h4>attributes:</h4>
<ul class="attributes"></ul>
</script>
<script type="text/template" id="functions_template">
<h4>functions:</h4>
</script>
<div id="header">
<select id="modeselector">
<option value="Torque">Torque</option>
<option value="SoShare">SoShare</option>
<option value="BitTorrent">BitTorrent</option>
<option value="uTorrent">uTorrent</option>
</select>
</div>
<div id="container">
<div id="sidebar">
<div id="introduction">
<h1 style="float:left;">btapp.js</h1>
<div id="license" style="clear:both;">
Btapp.js 0.1 (c) 2012 <br>
Patrick Williams<br>
Licensed under the MIT License
</div>
</div>
<h4>Realtime data...</h4>
<br>
<div id="data"></div>
</div>
<div id="content"></div>
</div>
</body>