We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e72275 commit c877235Copy full SHA for c877235
index.html
@@ -3,7 +3,6 @@
3
<head>
4
<title>Map on photo - add map thumbnail to your photo!</title>
5
<meta charset="utf-8" />
6
- <meta name="viewport" content="width=device-width, initial-scale=1 minimum-scale=0.2 maximum-scale=1 user-scalable=1" />
7
<meta name="author" content="Slavo" />
8
<meta name="theme-color" content="#2c3e50">
9
<meta name="description"
src/scripts/index.ts
@@ -37,6 +37,10 @@ window.addEventListener("load", () => {
37
}
38
});
39
40
+ if (!navigator.canShare()) {
41
+ warn("Web Share API not supported :(");
42
+ }
43
+
44
browser = new PhotoBrowser($elements.get("browser") as HTMLInputElement);
45
downloadManager = new DownloadManager(
46
$elements.get("download") as HTMLLinkElement,
0 commit comments