We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23cacab commit ad73c07Copy full SHA for ad73c07
chrome-extension/popup.html
@@ -2,10 +2,11 @@
2
<html lang="en-EN">
3
<head>
4
<meta charset="utf-8">
5
+ <title>RIP Quick Add</title>
6
</head>
7
<body>
8
<a href="#" id="pop-out">
- <img src="#" id="pop-out-img" alt="Pop-out">
9
+ <img src="popout.png" alt="Pop-out">
10
</a>
11
<br>
12
<textarea id="input" rows="6" cols="30" placeholder="E.g. dinner friday 7pm"></textarea>
src/popup.js
@@ -36,6 +36,3 @@ document.getElementById('pop-out').addEventListener('click', () => {
36
37
close();
38
});
39
-
40
-const img = document.getElementById('pop-out-img')
41
-img.src = chrome.runtime.getURL('popout.png');
0 commit comments