-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
60 lines (60 loc) · 2.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
<!DOCTYPE html>
<html>
<head>
<title>Notation Explorer</title>
<link rel="stylesheet" type="text/css" href="index.css">
<meta charset="UTF-8">
<meta name="author" content="hyp_cos">
</head><body><script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
<script>var register=[];</script>
<div id="app">
<div class="tab">
<button v-for="(tab,idx) in tab_names" @mousedown="current_tab=idx" :disabled="current_tab==idx">{{tab}}</button>
</div>
<button @mousedown="reset_list()">Reset the list</button>
<div>
Expansion tier: <button @mousedown="decr_tier()">-</button> {{tiername}} <button @mousedown="incr_tier()">+</button>
(Press 0~9 to select tier)
</div>
<div>
Extra FS terms when expand: <button @mousedown="decr_extra()">-</button> {{extra_FS[current_tab]}} <button @mousedown="incr_extra()">+</button>
(Press "-" to decrease, and "+" to increase)
</div>
<div>
FS terms shown in tooltip: <button @mousedown="decrFS()">-</button> {{FS_shown[current_tab]}} <button @mousedown="incrFS()">+</button>
(Press "<" to decrease, and ">" to increase)
</div>
<component :is="current_notation" :subitems="datasets[current_tab]"></component>
</div>
<script src="omega-Y.js"></script>
<script src="omega-Y-magma.js"></script>
<script src="1-Y.js"></script>
<script src="BM.js"></script>
<script src="BHM.js"></script>
<script src="BSM.js"></script>
<script src="BSM2.js"></script>
<script src="BLM.js"></script>
<script src="BDM.js"></script>
<script src="CM.js"></script>
<script src="MM3.js"></script>
<script src="TomegaMN.js"></script>
<script src="TON-main.js"></script>
<script src="TON-DoR.js"></script>
<script src="TON-DRP.js"></script>
<script src="TON-I.js"></script>
<script src="TON-IBP.js"></script>
<script src="TON-MC.js"></script>
<script src="TON-MPC.js"></script>
<script src="TON-DRC.js"></script>
<script src="TON-DRPC.js"></script>
<script src="aSAN-1.js"></script>
<script src="aSAN-2.js"></script>
<script src="aSAN-3.js"></script>
<script src="aSAN~3+.js"></script>
<script src="LMN.js"></script>
<script src="LON.js"></script>
<script src="HSPN.js"></script>
<script src="cOCF.js"></script>
<script src="framework.js"></script>
</body>
</html>