-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpopup.html
33 lines (30 loc) · 863 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
<!DOCTYPE html>
<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;
}
</style>
</head>
<body>
<pre>
<span id="errors"></span>
</pre>
<div class="buttonsBlock">
<a href="#x" title="Copy"><img id="copy" src="img/copy.png" /></a
><a href="#x"><img id="showPopup" src="img/popup_off.png" /></a
><a href="#x"><img id="showIcon" src="img/icon_off.png" /></a
><a href="options.html" title="Options (global)"><img src="img/settings.png" /></a
><a href="#x" id="clear" title="Clear"><img src="img/close.png" /></a>
</div>
</body>
</html>