-
Notifications
You must be signed in to change notification settings - Fork 24
/
options.html
60 lines (56 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<title>Yet Another Jenkins Notifier Options</title>
<meta charset="UTF-8">
<style>
fieldset[disabled] {
opacity: 0.75;
}
textarea {
width: 100%;
min-height: 150px;
}
</style>
</head>
<body>
<fieldset>
<legend>Options</legend>
<p>
<b>Show popup notifications:</b>
<br>
<label>
<input type="radio" name="notification" value="all" checked>
On every build
</label>
<label>
<input type="radio" name="notification" value="unstable">
On every unstable build
</label>
<label>
<input type="radio" name="notification" value="none">
Never
</label>
</p>
<p>
<label><b>Refresh time:</b></label><br>
<input style="width: 100%;" min="5" max="120" step="5" range-type="s" type="range" id="refreshTime">
<br>
<i>Check server for changes every <b><span id="refreshTimeSpan"></span> seconds</b></i>
</p>
</fieldset>
<p style="visibility: hidden" id="optionStatus">Options saved.</p>
<fieldset>
<legend>Listening job build urls</legend>
<i>One url per line</i>
<br>
<textarea id="urls"></textarea>
<br>
<button id="saveUrls" type="submit">Save urls</button>
</fieldset>
<p style="visibility: hidden" id="urlsStatus">Urls saved.</p>
<script src="js/services.js"></script>
<script src="js/options.js"></script>
<script src="js/ga.js" data-no-firefox></script>
</body>
</html>