Rename SimpleDOMParser to NativeSimpleDOMParser (#1113)

This commit is contained in:
toasted-nutbread 2020-12-14 22:56:38 -05:00 committed by GitHub
parent e29c752793
commit 7926821c48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -39,7 +39,7 @@
<script src="/bg/js/options.js"></script>
<script src="/bg/js/profile-conditions.js"></script>
<script src="/bg/js/request-builder.js"></script>
<script src="/bg/js/simple-dom-parser.js"></script>
<script src="/bg/js/native-simple-dom-parser.js"></script>
<script src="/bg/js/text-source-map.js"></script>
<script src="/bg/js/translator.js"></script>

View File

@ -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) {

View File

@ -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');
}