diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-18 15:54:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-18 15:54:05 -0500 |
commit | 51223abfa696c5917828fdb5a6d7b1816d76c5c6 (patch) | |
tree | 1c64ad6b15b0773908669cdce14e6d1f319e428e /ext/bg/js/native-simple-dom-parser.js | |
parent | fd91a5b383addb1b420fba0450a89ceb50cdd3e8 (diff) |
Set up initial manifest v3 support (#605)
Diffstat (limited to 'ext/bg/js/native-simple-dom-parser.js')
-rw-r--r-- | ext/bg/js/native-simple-dom-parser.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/bg/js/native-simple-dom-parser.js b/ext/bg/js/native-simple-dom-parser.js index 4e0d89ea..c1752bc4 100644 --- a/ext/bg/js/native-simple-dom-parser.js +++ b/ext/bg/js/native-simple-dom-parser.js @@ -17,6 +17,8 @@ class NativeSimpleDOMParser { constructor(content) { + // TODO : Remove + // eslint-disable-next-line no-undef this._document = new DOMParser().parseFromString(content, 'text/html'); } |