-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (103 loc) · 3.92 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/png" href="favicon.ico"/>
<link rel="stylesheet" type="text/css" href="stylesheets/main.css">
<link rel="stylesheet" type="text/css" href="stylesheets/scrollbar.css">
<link rel="stylesheet" type="text/css" href="stylesheets/controls.css">
<link rel="stylesheet" type="text/css" href="stylesheets/historyContainer.css">
<link rel="stylesheet" type="text/css" href="stylesheets/inputBoxes.css">
<link rel="stylesheet" type="text/css" href="stylesheets/customAlertBox/alertify.css">
<link rel="stylesheet" type="text/css" href="stylesheets/customAlertBox/themes/default.css">
<link rel="stylesheet" type="text/css" href="stylesheets/customAlertBox/loginForm.css">
<link rel="stylesheet" type="text/css" href="stylesheets/pocketRelated.css">
<script src="js/jquery.min.js"></script>
<script src="js/horizontalScroll/jquery.mousewheel.js"></script>
<script src="js/horizontalScroll/mouseWheelHorizontalScroll.js"></script>
<script src="js/customAlertBox/alertify.min.js"></script>
<script src="js/customAlertBox/alertifyPopup.js"></script>
<script src="js/history/historyLoader.js"></script>
<script src="js/bookmarks/bookmarkLoader.js"></script>
<script src="js/history/sortingFilters.js"></script>
<script src="js/bookmarks/bookmarkSortingFilters.js"></script>
<script src="js/history/deleteHistory.js"></script>
<script src="js/bookmarks/deleteBookmarks.js"></script>
<script src="js/localStorageChangeCallback.js"></script>
<script src="js/scrollHandler.js"></script>
<script src="js/statisticsButtonHandler.js"></script>
<script src="js/bookmarkHistorySwitch.js"></script>
<script src="js/attachEvents.js"></script>
<script src="js/bookmarks/pocketImporter.js"></script>
<link rel="icon" type="image/png" href="icon.png">
<!--This animation will be injected when using the delete history function, using js-->
<script type="application/x-template">
@-webkit-keyframes disapear
{
0%
{
/* Sets the initial width to the measured width of the element */
width: {{width}};
}
30%
{
-webkit-transform: translateY(-5%);
transform: translateY(-5%);
}
60%
{
-webkit-transform: translateY(200%);
transform: translateY(200%);
/* Makes sur the width and bottom margin stay constant
till this point in the animation */
width: {{width}};
margin-bottom: 1em;
}
100%
{
/* Keeps the element out of the screen. If it's not there,
* the element comes back to its original position
*/
-webkit-transform: translateY(200%);
transform: translateY(200%);
/* Makes the blank space collapse */
width: 0;
margin-bottom: 0;
}
}
</script>
<title>toryvis</title>
</head>
<body>
<header id="header">
<span id="mode">
History
</span>
</header>
<div id="content">
<div class="sort_container">
<p class="sort_label">Sort by</p>
<select id="dateOrVisits" class="sort_dropdown">
<option value="date">Date accessed</option>
<option value="accessed">Most accessed</option>
</select>
<select id="ascOrDesc" class="sort_dropdown">
<option value="descending">Descending</option>
<option value="ascending">Ascending</option>
</select>
</div>
<span id="no_browsing_data">
</span>
<div id="search_box">
<input class="search_text" id="searchText" type="search" placeholder="Search">
</div>
<div id="history_item_view"></div>
<ul id="button_list">
<li> <a class="main_button" id="switchHistoryBookmarks">Switch to Bookmarks</a></li>
<li> <a class="main_button" id="statistics">Statistics</a></li>
<li> <a class="main_button" id="help">Help me!</a></li>
<li> <a class="delete_button" id="deleteButton"> </a></li>
</ul>
</div>
</body>
</html>