-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
95 lines (88 loc) · 4.03 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
91
92
93
94
95
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="styles/dropPlan#{isMinified}.css?l=#{now}" rel="stylesheet" type="text/css">
</link>
</head>
<body class='mainBody'>
<div id="actualContent">
<canvas id="canvas1" width="2000" height="1000"></canvas>
<canvas id="canvas2" width="2000" height="1000" class="relations"></canvas>
<div id="options" style="display:none; " class="options">
<div class="optionsInner">
<div>
Last updated: <span id="updateTime">N/A</span>
<!-- <button class='refreshPlanBtn' onclick='refreshPlan();'>Refresh Tasks</button> -->
</div>
<div>
<!--<input id="showAreaPath" type="checkbox" onclick="$('body').toggleClass('showareapath');" />-->
Highlight:
<select id="highlight" onchange="changeHighlight(this.options[this.selectedIndex].value)">
<option value="">None</option>
<option value="areapath">Area Path</option>
<option value="Status">Status</option>
<option value="Parent">Parent</option>
</select>
</div>
<div>
<input id="showPBIs" type="checkbox" onclick="switchViewByTasks(!($('#showPBIs').prop('checked')));" />
<label for="showPBIs">View by Parent</label>
</div>
<div>
<input id="showNonWorkingTeamDays" type="checkbox" onclick="switchViewNonWorkingTeamDays(($('#showNonWorkingTeamDays').prop('checked')));" />
<label for="showNonWorkingTeamDays">Non-working days</label>
</div>
<div>
<input id="filterBy" type="text" placeholder="Filter by keyword">
on
<select id="filterArea">
<option value="AllSearchable">All</option>
<option value="Activity">Activity</option>
<option value="AreaPath">Area Path</option>
<option value="AssignedTo">Assigned To</option>
<option value="Title">Title</option>
<option value="ParentTags">Parent Tags</option>
<option value="ParentTitle">Parent Title</option>
<option value="State">State</option>
<option value="Tags">Tags</option>
</select>
</div>
<div class="alignToLeft">
Theme:
<select id='themes' onchange="changeTheme(this.options[this.selectedIndex].value, true)">
<option value="modern">Modern</option>
<option value="classic">Classic</option>
<option value="fun">Colorful</option>
<option value="solid">Solid</option>
</select>
</div>
<div>
<input id="resetTasksBtn" type="button" onclick="ResetTasks();" value="Rearrange tasks" />
</div>
</div>
</div>
<div class="optionsspace"> </div>
<div id="grid-container">
</div>
</div>
<div class="messageBoxContainer" id="messageBoxContainer">
<div class="messageBox">
<div id="messageBoxInner" class="messageBoxInner">
<h2>Please wait while loading data ...</h2>
<p id="messages"></p>
</div>
</div>
</div>
<br/>
</body>
<script src="scripts/dropPlan#{isMinified}.js?l=#{now}"></script>
<script type="text/template">
(function(){
var js = document.createElement('script')
js.src = "https://cdn.logrocket.io/LogRocket.min.js";
js.crossorigin = "anonymous";
var fjs = document.getElementsByTagName('script')[0];
fjs.parentNode.insertBefore(js,fjs);
})();
</script>
</html>