-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsbb.htm
More file actions
71 lines (70 loc) · 2.9 KB
/
sbb.htm
File metadata and controls
71 lines (70 loc) · 2.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Visual Public Transport Timetable</title>
<script type="text/javascript" src="jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.9.2.custom.min.js"></script>
<script>
jQuery.support.cors = true;
if (typeof console == 'undefined') {
console = {};
}
if (typeof console.log == 'undefined') {
console.log = function() {}
}
</script>
<script type="text/javascript" src="date.format.js"></script>
<script type="text/javascript" src="date.setISO8601.js"></script>
<script type="text/javascript" src="date.uiParser.js"></script>
<script type="text/javascript" src="raphael-min.js"></script>
<script type="text/javascript" src="sbb.js"></script>
<link href="jquery-ui-1.9.2.custom.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="sbb.css" />
</head>
<body>
<div>
<form name="userInput">
<table>
<tr>
<td>Connection before:</td><td>From:</td><td><input name="connFrom" class="stationfield"/>
+mins: <input size="2" name="connFromGap"/></td>
</tr>
<tr>
<td>Main connection:</td>
<td>From:</td><td><input name="from" class="stationfield"/></td>
<td>Date:</td><td><input name="date"/></td>
</tr>
<tr>
<td></td>
<td>To:</td><td><input name="to" class="stationfield"/></td>
<td>Time:</td><td><input name="time"/>
</td>
</tr>
<tr>
<td>Connection after:</td><td>To:</td><td><input name="connTo" class="stationfield"/>
+mins: <input size="2" name="connToGap"/></td>
</tr>
</table>
<p><input type="submit" id="updateBtn" value="Update"/>
<button id="swap">Swap stations</button>
<input type="hidden" name="numConns" value="6"/></p>
</form>
</div>
<div id="timetable">
Your browser has a JavaScript problem
</div>
<div id="timetable-buttons">
<button id="ctlEnlarge" title="Show more connections"><-></button>
<button id="ctlShrink" title="Show fewer connections">-><-</button>
<button id="ctlShiftLeft" title="See previous connection"><-</button>
<button id="ctlShiftRight" title="See next connection">-></button>
<button id="ctlScaleIn" title="Use more height">+</button>
<button id="ctlScaleOut" title="Reduce height">-</button>
<button id="save">save</button>
</div>
<div class="copyright">
Visual Timetable is licensed under GPL. See <a href="https://raw.github.com/daald/Visual-Timetable/">https://raw.github.com/daald/Visual-Timetable/</a>
</div>
</body>
</html>