- commit
- 0598c50d6f8af83ec2ddf58629b4a5f29c29ef75
- parent
- d1f25643d37ac376b0f74b47de4fe7be61503c33
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2025-04-24 07:01
lint
Diffstat
| M | bg.js | 2 | ++ |
| M | shared.js | 2 | ++ |
| M | stack.js | 4 | +++- |
3 files changed, 7 insertions, 1 deletions
diff --git a/bg.js b/bg.js
@@ -1,3 +1,5 @@ -1 1 /* global chrome */ -1 2 1 3 import { pushBookmark, updateCount } from './shared.js'; 2 4 3 5 chrome.contextMenus.create({
diff --git a/shared.js b/shared.js
@@ -1,3 +1,5 @@ -1 1 /* global chrome */ -1 2 1 3 const FOLDER_TITLE = 'stack'; 2 4 3 5 var getRootFolder = async function() {
diff --git a/stack.js b/stack.js
@@ -1,8 +1,10 @@ -1 1 /* global chrome */ -1 2 1 3 import { getBookmarks, popBookmark } from './shared.js'; 2 4 3 5 var render = function(element, items) { 4 6 if (items.length === 0) {5 -1 element.outerHTML = '<p>No links stored yet.</p>'-1 7 element.outerHTML = '<p>No links stored yet.</p>'; 6 8 } else { 7 9 element.innerHTML = ''; 8 10 items.forEach(item => {