Skip to content

Commit 2d89cf8

Browse files
fix linting errs
1 parent 7b4d164 commit 2d89cf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/js/firstparties/tumblr.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// only observed links with this format out in the wild
2-
let tumblr_links = "a[href^='https://t.umblr.com/redirect?']"
2+
let tumblr_links = "a[href^='https://t.umblr.com/redirect?']";
33

44
// reassigns the href and scrubs link of all unnecessary attributes
55
function unwrapLink(a) {
@@ -10,7 +10,7 @@ function unwrapLink(a) {
1010

1111
for (let attr of a.attributes) {
1212
if (!['target', 'class', 'style'].includes(attr.name)) {
13-
a.removeAttribute(attr.name)
13+
a.removeAttribute(attr.name);
1414
}
1515
}
1616

0 commit comments

Comments
 (0)