-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
35 lines (26 loc) · 927 Bytes
/
popup.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>The Switcher - PopUp</title>
<link rel="stylesheet" type="text/css" href="styles/style.css" />
<script src="libs/jquery.min.js"></script>
<script src="libs/underscore.min.js"></script>
<script src="libs/backbone.min.js"></script>
<script src="scripts/main.js"></script>
</head>
<body>
<input type="search" autofocus="true" id="search" />
<!--<output></output>-->
<div id="items"></div>
<script type="template" id="template-item">
<% if (typeof showFavicons != 'undefined' && showFavicons) { %>
<div class="favicon">
<img src="<%= favIconUrl %>"></img>
</div>
<% } %>
<div class="item-first-row" title="<%- title.replace(/\"/g, '\"') %>" data-closed="<%= isClosed %>"><%- title %></div>
<div class="item-second-row" title="<%= url %>"><%= url %></div>
</script>
</body>
</html>