-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
48 lines (47 loc) · 1.3 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>JavaScript Errors Notifier</title>
<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<style>
body {
margin-left: 5px;
margin-right: 5px;
margin-top: 5px;
margin-bottom: 0;
max-width: 800px;
max-height: 600px;
min-width: 260px;
min-height: 80px;
overflow-y: scroll;
/* overflow-x: hidden; */
}
</style>
</head>
<body>
<pre>
<span id="errors"></span>
</pre>
<div class="buttonsBlock">
<a href="#x" title="Copy">
<img title="copy" id="copy" src="img/copy.png" />
</a>
<a href="#x">
<img title="show popup" id="showPopup" src="img/popup_off.png" />
</a>
<a href="#x">
<img title="show icon" id="showIcon" src="img/icon_off.png" />
</a>
<a href="options.html" title="Options (global)">
<img title="settings" src="img/settings.png" />
</a>
<a href="#x" id="clear" title="Clear">
<img title="close" src="img/close.png" />
</a>
</div>
</body>
</html>