This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsieve.html
56 lines (50 loc) · 2.12 KB
/
sieve.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!--
* Sieve
* Prospector's file picker
* Copyright (C) Codexa Organization 2013.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<link href="img/app/ic/app64.png" rel="icon" type="image/x-icon" />
<link href="img/app/ic/app64.png" rel="shortcut icon" type="image/x-icon" />
<title>Pick a File</title>
<!-- Scripts -->
<script type="text/javascript" src="scripts/regions.js"></script>
<script type="text/javascript" src="scripts/io.js"></script>
<script type="text/javascript" src="scripts/prospector.js"></script>
<!-- Lib -->
<script type="text/javascript" src="scripts/lib/bugsense.js"></script>
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="style/progress_activity.css" />
<link rel="stylesheet" type="text/css" href="style/lists.css" />
<link rel="stylesheet" type="text/css" href="style/grids.css" />
<link rel="stylesheet" type="text/css" href="style/headers.css" />
<link rel="stylesheet" type="text/css" href="style/regions.css" />
<link rel="stylesheet" type="text/css" href="style/icons.css" />
<link rel="stylesheet" type="text/css" href="style/main.css" />
<link rel="stylesheet" type="text/css" href="style/desktop.css" />
</head>
<body role="application">
<section role="region" id="welcome" class="current">
<header>
<button data-click="previous" id="back-button"><span class="icon" data-icon="back"><</span></button>
<menu type="toolbar">
<button data-click="sieve-done" id="done-button"><span class="icon" data-icon="close">Done</span></button>
</menu>
<h1 class="center">Pick a File</h1>
</header>
<progress max="100" value="0" class="pack-activity light hidden" id="progress" style="position: absolute; z-index: 1000;"></progress>
<div role="main" class="header-only">
<div id="file-area" class="file-area" data-type="list">
<article></article>
<article></article>
<article></article>
</div>
</div>
</section>
<hidden style="display: none;" id="current-directory"></hidden>
</body>
</html>