-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.27 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<link href="styles/main.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<title>File Transfer</title>
</head>
<body>
<header class="header">
<h1>File Transfer</h1>
</header>
<div class="content">
<div style="margin:10px 5px;">Clicking the button downloads an image from the Icenium site and saves it on the device.</div>
<div class="action-area ch30">
<button class="button dh" id="download">Download</button>
</div>
<div class="result-area ch70">
<div class="results">
<div id="result" class="desc"></div>
<img id="downloadedImage"/>
</div>
<div class="separator"></div>
</div>
</div>
<footer class="footer">
<div>Cordova API Samples</div>
</footer>
</body>
</html>