This repository has been archived by the owner on Jan 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (86 loc) · 3.31 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
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
<!DOCTYPE html>
<html>
<head>
<title>Trello Calendar</title>
<meta itemprop="image" content="favicon.ico">
<meta HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<meta HTTP-EQUIV="EXPIRES" CONTENT="Mon, 22 Jul 2002 11:12:01 GMT">
<meta HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<link rel="shortcut icon" href="favicon.png" type="image/png">
<link href='css/normalize.css' rel='stylesheet' />
<link href='css/app.css' rel='stylesheet' />
<link href='css/jquery-ui.css' rel='stylesheet' />
<link href='css/jquery.ui.core.css' rel='stylesheet' />
<link href='css/jquery.ui.all.css' rel='stylesheet' />
<link href='css/fullcalendar.css' rel='stylesheet' />
<link href='css/fullcalendar.print.css' rel='stylesheet' media='print' />
<!--<script src='js/jquery.min.js'></script>-->
<script src='js/jquery-1.9.1.js'></script>
<script src='js/jquery-ui-1.10.3.custom.min.js'></script>
<script src='js/fullcalendar.min.js'></script>
<script src="https://api.trello.com/1/client.js?key=c220897e88bf3b1bcc450bef48c63254"></script>
<!-- JSON2 required for IE to load a JSON object -->
<script src="js/json2.js"></script>
<script src='js/app.js'></script>
<script>
$(document).ready(function() {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
app.initialize();
});
</script>
</head>
<body>
<h1 style="text-align:center">Trello Calendar View</h1>
<div id="status">Initalising</div>
<div id="tabs" class="tabs">
<ul>
<li><a href="#Options">Options</a></li>
<li><a href="#Boards">Boards</a></li>
<li><a href="#Lists">Lists</a></li>
<li><a href="#Run">Run</a></li>
</ul>
<div id="Options"><!-- 0 -->
<div>
<input type="checkbox" id="assignedToMe" /> Cards assigned to me<br />
</div>
<br />
<button id="btnOptions" class="btn btnShadow btnGreen" onclick="app.MoveTab(1, [0,2,3])">Next →</button>
</div>
<div id="Boards"><!-- 1 -->
<div id="BoardsCheckboxes"></div>
<div>
<input type="checkbox" id="selectAllBoards" onchange="app.selectAllBoards()" /> Select All
</div>
<br />
<button class="btn btnShadow btnBlue" onclick="app.MoveTab(0, [1,2,3])">← Previous</button>
<button id="btnBoard" class="btn btnShadow " onclick="app.MoveTab(2, [0,1,3])">Next →</button>
</div>
<div id="Lists"><!-- 2 -->
<div id="ListsCheckboxes"></div>
<div>
<input type="checkbox" id="selectAllLists" onchange="app.selectAllLists()" /> Select All
</div>
<br />
<button class="btn btnShadow btnBlue" onclick="app.MoveTab(1, [0,2,3])">← Previous</button>
<button id="btnList" class="btn btnShadow " onclick="app.MoveTab(3, [0,1,2])">Next →</button>
</div>
<div id="Run"><!-- 3 -->
<button class="btn btnShadow btnBlue" onclick="app.MoveTab(2, [0,1,3])">← Previous</button>
<button id="btnRun" class="btn btnShadow " onclick="app.CreateCalendar()">Run →</button>
<div id="colors" class="tabs" style="display:none;">
<ul>
<li><a href="#Legend">Legend</a></li>
</ul>
<div id="Legend">
<div id="colorLegend"></div>
</div>
</div>
</div>
</div>
<div id='calendar'>
</div>
</body>
</html>