1
0
mirror of https://github.com/RobinLinus/snapdrop.git synced 2025-05-27 21:10:15 -07:00

iOS: More fallback tests

This commit is contained in:
RobinLinus 2018-10-11 00:34:34 +02:00
parent 1afb83590b
commit a74e3fad1a

View File

@ -242,7 +242,7 @@ class ReceiveDialog extends Dialog {
$a.href = '#';
let reader = new FileReader();
reader.onload = e => {
$a.onclick = window.open(reader.result,'_blank');
$a.onclick = e=>window.open(reader.result,'_blank');
}
reader.readAsDataURL(file.blob);
}