~ubuntu-branches/ubuntu/vivid/unity-webapps-qml/vivid

« back to all changes in this revision

Viewing changes to examples/api-bindings/download-manager/www/index.html

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Ubuntu daily release, Alexandre Abreu
  • Date: 2014-05-20 13:42:03 UTC
  • mfrom: (1.1.31)
  • Revision ID: package-import@ubuntu.com-20140520134203-2v8tb1tpodk9ywir
Tags: 0.1+14.10.20140520-0ubuntu1
[ Ubuntu daily release ]
* New rebuild forced

[ Alexandre Abreu ]
* Bindings for the download manager (LP: #1295842)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html>
 
2
<html>
 
3
 
 
4
  <meta charset="utf-8" />
 
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
6
 
 
7
  <head>
 
8
    <title>Download Api example</title>
 
9
    <script src="./js/app.js"></script>
 
10
  </head>
 
11
 
 
12
  <body>
 
13
 
 
14
    <div>
 
15
        http://upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png <input type="button" id="download1"></input>
 
16
    </div>
 
17
 
 
18
    <div>
 
19
        http://files.meetup.com/596486/La%20CANADA%20FIRES%20FROM%20CULVER%20CITY%20-%20(10%20MEG%20FILE).jpg <input type="button" id="download2"></input>
 
20
    </div>
 
21
 
 
22
    <div>
 
23
      Progress:
 
24
      <span id="progress">0</span>%
 
25
    </div>
 
26
 
 
27
    <div>
 
28
      Results:
 
29
      <div id="results">
 
30
      </div>
 
31
    </div>
 
32
 
 
33
  </body>
 
34
 
 
35
</html>