-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtopic.html
More file actions
119 lines (112 loc) · 5.41 KB
/
topic.html
File metadata and controls
119 lines (112 loc) · 5.41 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
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
<!DOCTYPE html>
<html>
<head>
<title>Magic</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="../external/jquery-ui.js"></script>
<script src="/js/trackingcode.js"></script>
<link rel="stylesheet" href="../external/jquery-ui.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="../styles/main.css">
<link rel="stylesheet" type="text/css" href="../styles/calculator.css">
<script src="https://www.gstatic.com/firebasejs/4.1.5/firebase.js"></script>
<script type="text/javascript" src="../js/fire.js"></script>
<script type="text/javascript" src="../js/topic.js"></script>
</head>
<body>
<div class="row heading">
<!-- <div class="col-md-2">
<select name="topics" id="topics">
<option value="jquery">Home</option>
<optgroup label="Chapter 1">
<option value="1.1">1.1 baoh</option>
<option value="1.2">uisdjfnkj.js</option>
</optgroup>
<optgroup label="Chapter 2">
<option value="somefile">Some unknown file</option>
<option value="someotherfile">Some other file</option>
</optgroup>
</select>
</div>
-->
<div class="col-md-1 center">
<button id="TextButton" type="button" data-toggle="button" aria-pressed="true" autocomplete="off" class="btn btn-secondary" onclick="clickText();">Text</button>
</div>
<div class="col-md-1 center">
<button id="VideoButton" type="button" data-toggle="button" aria-pressed="true" autocomplete="off" class="btn btn-secondary" onclick="clickVid();">Video</button>
</div>
<div class=" col-md-1 center">
<button id="TestButton" type="button" autocomplete="off" class="btn btn-secondary" onclick="clickTest();">Test</button>
</div>
<div class="col-md-1 center">
<button id="AppButton" type="button" data-toggle="button" aria-pressed="true" autocomplete="off" class="btn btn-secondary" onclick="clickApp();">Application</button>
</div>
<div class="col-md-4 center">
<h3>Linear Algebra Magic</h3>
</div>
<div class="col-md-1 center">
<button class="btn btn-primary">Prev</button>
</div>
<div class="col-md-1 center">
<button onclick="window.top.location = '/asciiart'" class="btn btn-primary">Next</button>
</div>
<!-- <div class="col-md-1 center">
<button class="ui-button ui-widget ui-corner-all">Custom</button>
</div>
-->
<div class="col-md-2 right">
<img id="reset-image" style="width: 32px;" src="../directed-graph/refresh-icon.png" alt="reset layout">
   
<button onclick="window.top.location = '/home'" class="btn btn-primary">Home</button>
</div>
</div>
<br id="break">
<div id="all-content"></div>
<div id="content">
<div id="my_notes" class="row">
</div>
<br>
<div class="row">
<div class="col-md-3">
<div id="calc" onclick="sendontop(this);" class="ui-widget-content box">
<h3 class="ui-widget-header"> Calculator</h3>
</div>
<div id="connect" onclick="sendontop(this);" class="ui-widget-content box">
<h3 class="ui-widget-header"> Connections</h3>
</div>
</div>
<div class="col-md-6">
<div id="summary-text" onclick="sendontop(this);" class="ui-widget-content box">
<h3 class="ui-widget-header"> Summary Text</h3>
</div>
<div id="learn" onclick="sendontop(this);" class="ui-widget-content box">
<h3 class="ui-widget-header"> Learn</h3>
</div>
</div>
<div class="col-md-3">
<div id="sample-prob" onclick="sendontop(this);" class="ui-widget-content box">
<h3 class="ui-widget-header"> Sample Problem</h3>
</div>
<div id="tough-prob" onclick="sendontop(this);" class="ui-widget-content box">
<h3 class="ui-widget-header"> Ready Player One</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div id="extras" onclick="sendontop(this);" class="ui-widget-content box">
<h3 class="ui-widget-header"> Extra Info</h3>
</div>
</div>
<div class="col-md-4">
<div id="www" onclick="sendontop(this);" class="ui-widget-content box">
<h3 class="ui-widget-header"> WWW</h3>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript">Hello_World()</script>
</html>