From bb64d08eaf3118b0bdc2f73e2be3f5f68d76d843 Mon Sep 17 00:00:00 2001 From: foss- Date: Sat, 30 Sep 2023 17:26:27 +0200 Subject: [PATCH] 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) --- view/theme/frio/templates/jot-header.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/templates/jot-header.tpl b/view/theme/frio/templates/jot-header.tpl index c5c3576c7e..ed3839860e 100644 --- a/view/theme/frio/templates/jot-header.tpl +++ b/view/theme/frio/templates/jot-header.tpl @@ -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(); }