This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
overview.html
executable file
·112 lines (96 loc) · 4.06 KB
/
overview.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
<!DOCTYPE html>
<html ng-app="app" ng-csp>
<head lang="en" data-ng-controller="overviewController">
<meta charset="UTF-8">
<title>{{'overview_page_title_prefix' | i18n}} - {{title}}</title>
<link href="static/css/angular-csp.css" rel="stylesheet">
<link href="static/css/bootstrap.min.css" rel="stylesheet">
<link href="css/overview.css" rel="stylesheet">
<!-- static -->
<script src="static/js/pouchdb-6.4.3.min.js"></script>
<script src="static/js/jquery-3.4.1.min.js"></script>
<script src="static/js/angular.min.js"></script>
<script src="static/js/bootstrap.min.js"></script>
<script src="js/shared/style_sheet_manager.js"></script>
<script src="js/shared/utils.js"></script>
<!-- main -->
<script src="js/shared/chrome_storage.js"></script>
<script src="js/shared/chrome_highlight_storage.js"></script>
<script src="js/shared/db.js"></script>
<script src="js/shared/chrome_tabs.js"></script>
<script src="js/shared/ng-modules/i18n_filters.js"></script>
<script src="js/overview/app.js"></script>
<script src="js/overview/controllers.js"></script>
</head>
<body data-ng-controller="overviewController">
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" ng-href="{{'extension_webstore_url' | i18n}}">
<!-- <img data-ng-src="{{manifest.icons['19']}}" style="margin-right: 1em; vertical-align: bottom"> -->
{{manifest.name}}
<span class="small">{{manifest.version}}</span>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a ng-href="{{'extension_author_url' | i18n }}">©{{'copyright_year' | i18n}} {{ 'extension_author' | i18n }}</a></li>
</ul>
</div>
</div>
</nav>
<div id="page-container" class="container">
<header class="page-header">
<!-- Main Header -->
<h1>
<!-- <a ng-href="{{url}}" target="_id" class="glyphicon glyphicon-open-file" ng-click="onClickPageUrl()"></a> -->
<!-- <span class="glyphicon glyphicon-file pointer" data-ng-click="onClickPageUrl()" title="{{'activate_originating_tab' | i18n}}"></span> -->
<!-- onClickPageUrl() uses the event param to prevent default action (navigation).
If the associated tab has been removed, user should navigate explicitly (via context menu) -->
<a ng-href="{{url}}" alt="Page Title">{{title}}</a>
<!-- <a href="" class="h6 glyphicon glyphicon-file">
({{'activate_originating_tab' | i18n}})
</span> -->
</h1>
<h4>
<p class="number-of-highlights text-muted">{{docsCountText}}</p>
</h4>
</header>
<!-- Highlights List -->
<section>
<ol class="list-unstyled highlights">
<li ng-repeat="group in groupedDocs">
<h4 class="group-header" ng-show="group.title">
{{ group.title }}
</h4>
<ol class="list-unstyled">
<li ng-repeat="doc in group.docs" id="{{doc._id}}" class="well-sm" ng-class="{'not-in-dom': doc.isInDOM === false}">
<!--Number (index+1)-->
<!-- <h2 class="number highlight {{doc.className}}" ng-click="onClickHighlight(doc)">{{$index + 1}}</h2> -->
<!--title-->
<p class="text highlight {{doc.className}}" ng-click="onClickHighlight(doc)">
{{doc.text || " "}}
</p>
<!-- info -->
<div class="infobar">
<small class="date">{{ doc.date | date:'mediumTime' }}</small>
</div>
</li>
</ol>
</li>
</ol>
</section>
<footer class="visible-print-block">
<a class="small" ng-href="{{url}}">{{url}}</a>
</footer>
</div>
</body>
</html>