Added HTML5 Drag & Drop for Gecko/Firefox Mobile

Chrome does support dragstart and was fixed previously.
This is not active yet as i'm testing for touch issues.
This commit is contained in:
djmaze 2020-09-28 17:23:22 +02:00
parent 9b94265844
commit d735893cd6
3 changed files with 270 additions and 1 deletions

View file

@ -402,7 +402,7 @@ export function htmlToPlain(html) {
.replace(/<\/blockquote>/gim, '\n__bq__end__\n')
.replace(/<a [^>]*>([\s\S\r\n]*?)<\/a>/gim, convertLinks)
.replace(/<\/div>/gi, '\n')
.replace(/&nbsp;/gi, ' ')
.replace(/&nbsp;/gi, ' ')
.replace(/&quot;/gi, '"')
.replace(/<[^>]*>/gm, '');