forked from ftlabs/fastclick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path68.html
More file actions
23 lines (23 loc) · 629 Bytes
/
68.html
File metadata and controls
23 lines (23 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style type="text/css">
p { font-family: sans-serif; }
input { display: inline; }
</style>
<title>#68</title>
<script type="application/javascript" src="../lib/fastclick.js"></script>
<script type="application/javascript">
window.addEventListener('load', function() {
new FastClick(document.body);
}, false);
</script>
</head>
<body>
<p>On iOS, tapping either of the inputs should open the media selection dialog normally.</p>
<hr>
<input type="file" multiple="true">
<input type="file">
</body>
</html>