Compare commits

..

No commits in common. "3f20bd1cd3d046dacaf2d223728624c17bc3653a" and "d5d24b0e7e53a11ac0cf13004923237a978be2c4" have entirely different histories.

2 changed files with 0 additions and 9 deletions

View File

@ -183,7 +183,6 @@
this.selectedItem = undefined;
this.items.forEach(item => item.Read = item.Read || item.PendingRead);
this.selectedFeed = feed;
window.location.hash = feed;
},
loadItem(item) {
if (this.selectedItem === item.ID) {
@ -343,9 +342,6 @@
])
.then(() => {
this.setBusy(false);
if (window.location.hash.length > 1) {
this.loadFeed(window.location.hash.substr(1));
}
})
.catch(err => {
console.error(err);

View File

@ -64,11 +64,6 @@ class FeedItem extends HTMLElement {
[...this.shadowRoot.querySelectorAll('a[href^=http]')].forEach(a => {
a.setAttribute("target", "_blank");
a.setAttribute("rel", "noopener");
});
[...this.shadowRoot.querySelectorAll('p')].forEach(p => {
if (p.innerText.trim() == "") {
p.remove();
}
})
})