forked from spacemeowx2/LiveHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
executable file
·62 lines (59 loc) · 2.49 KB
/
options.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>直播关注助手选项</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="bootstrap-3.2.0/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/options.css" />
<script src="js/libs.js" charset="UTF-8"></script>
<script src="js/vue.js" charset="UTF-8"></script>
<script src="js/custom.js" charset="UTF-8"></script>
<script src="js/jquery-3.1.0.js" charset="UTF-8"></script>
<script src="js/subm-es5.js" charset="UTF-8"></script>
<script src="js/subm.js" charset="UTF-8"></script>
<script src="js/config.js" charset="UTF-8"></script>
<!--script src="js/options.js" charset="UTF-8"></script-->
</head>
<body>
<div class="hidden" id="templates"> <!--hidden-->
<div class="checkbox checkOption">
<label>
<input id="notice" type="checkbox" />
<span>逗B</span>
</label>
</div>
<div class="textInput">
</div>
</div>
<div class="container">
<h1><strong v-trans="'=选项'"></strong></h1>
<h2 v-trans="'=模块'"></h2>
<span v-trans="'=在你想观看的网站前面打勾'"></span>
<div v-for="item in config.getDefs('enabled.')">
<div v-if="item.type == 'checkbox'" class="checkbox checkOption">
<label>
<input v-model="item.value" type="checkbox" />
<span v-text="item.name"></span>
</label>
</div>
</div>
<h2 v-trans="'=杂项'"></h2>
<div id="misc">
<div class="form-group">
<label for="queryInterval" v-trans="'=后台查询间隔(单位: 分钟)'"></label>
<input type="text" class="form-control" id="queryInterval" v-model="config.misc.queryinterval" lazy />
</div>
<div v-for="item in config.getDefs('misc.')">
<div v-if="item.type == 'checkbox'" class="checkbox checkOption">
<label>
<input v-model="item.value" type="checkbox" />
<span v-trans="item.name"></span>
</label>
</div>
</div>
</div>
</div>
<script src="js/options.js" charset="UTF-8"></script>
</body>
</html>