We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b4d164 commit 2d89cf8Copy full SHA for 2d89cf8
src/js/firstparties/tumblr.js
@@ -1,5 +1,5 @@
1
// only observed links with this format out in the wild
2
-let tumblr_links = "a[href^='https://t.umblr.com/redirect?']"
+let tumblr_links = "a[href^='https://t.umblr.com/redirect?']";
3
4
// reassigns the href and scrubs link of all unnecessary attributes
5
function unwrapLink(a) {
@@ -10,7 +10,7 @@ function unwrapLink(a) {
10
11
for (let attr of a.attributes) {
12
if (!['target', 'class', 'style'].includes(attr.name)) {
13
- a.removeAttribute(attr.name)
+ a.removeAttribute(attr.name);
14
}
15
16
0 commit comments