From 1afb83590b4712489ee7098306ad1a8b1f33fc7e Mon Sep 17 00:00:00 2001 From: RobinLinus Date: Thu, 11 Oct 2018 00:32:46 +0200 Subject: [PATCH] iOS: More fallback tests --- client/scripts/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/scripts/ui.js b/client/scripts/ui.js index 14a266b..9d06675 100644 --- a/client/scripts/ui.js +++ b/client/scripts/ui.js @@ -239,7 +239,7 @@ class ReceiveDialog extends Dialog { if (window.isDownloadSupported) return; // fallback for iOS - $a.href = null; + $a.href = '#'; let reader = new FileReader(); reader.onload = e => { $a.onclick = window.open(reader.result,'_blank');