aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bg/js')
-rw-r--r--ext/bg/js/audio-downloader.js6
-rw-r--r--ext/bg/js/native-simple-dom-parser.js (renamed from ext/bg/js/simple-dom-parser.js)2
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/bg/js/audio-downloader.js b/ext/bg/js/audio-downloader.js
index 77cd7294..ddddfe18 100644
--- a/ext/bg/js/audio-downloader.js
+++ b/ext/bg/js/audio-downloader.js
@@ -16,7 +16,7 @@
*/
/* global
- * SimpleDOMParser
+ * NativeSimpleDOMParser
*/
class AudioDownloader {
@@ -109,7 +109,7 @@ class AudioDownloader {
});
const responseText = await response.text();
- const dom = new SimpleDOMParser(responseText);
+ const dom = new NativeSimpleDOMParser(responseText);
for (const row of dom.getElementsByClassName('dc-result-row')) {
try {
const audio = dom.getElementByTagName('audio', row);
@@ -149,7 +149,7 @@ class AudioDownloader {
});
const responseText = await response.text();
- const dom = new SimpleDOMParser(responseText);
+ const dom = new NativeSimpleDOMParser(responseText);
try {
const audio = dom.getElementById(`audio_${expression}:${reading}`);
if (audio !== null) {
diff --git a/ext/bg/js/simple-dom-parser.js b/ext/bg/js/native-simple-dom-parser.js
index 258b1f76..2aa4134d 100644
--- a/ext/bg/js/simple-dom-parser.js
+++ b/ext/bg/js/native-simple-dom-parser.js
@@ -15,7 +15,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
-class SimpleDOMParser {
+class NativeSimpleDOMParser {
constructor(content) {
this._document = new DOMParser().parseFromString(content, 'text/html');
}