Update jot-header.tpl

replace `contains` by `includes` in the "view/theme/frio/templates/jot-header.tpl" file on line 227 to fix this error message (only doing the leg-work here, hope this helps)
This commit is contained in:
foss- 2023-09-30 17:26:27 +02:00 committed by GitHub
parent 6057146a41
commit bb64d08eaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@
}
function linkDropper(event) {
var linkFound = event.dataTransfer.types.contains("text/uri-list");
var linkFound = event.dataTransfer.types.includes("text/uri-list");
if(linkFound)
event.preventDefault();
}