1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Minor changes

This commit is contained in:
Laurent Cozic
2019-07-19 18:18:05 +01:00
parent 14fc73b388
commit 8ff1668c8f
4 changed files with 13 additions and 3 deletions

View File

@ -15,7 +15,7 @@ class HtmlUtils {
extractImageUrls(html) {
if (!html) return [];
const dom = new JSDOM(html);
const imgs = dom.window.document.getElementsByTagName('img');
const output = [];