Created
February 23, 2013 19:51
-
-
Save glynrob/5021077 to your computer and use it in GitHub Desktop.
filesystem api html code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html manifest="filedemo.manifest"> | |
<head> | |
<meta name="viewport" content="width=device-width"> | |
<title>Filesystem API</title> | |
<link rel="stylesheet" type="text/css" href="default.css" media="all" /> | |
<script src="jquery-1.7.2.min.js"></script> | |
<script src="custom.js"></script> | |
</head> | |
<body> | |
<div class="buttons"> | |
<a id="addfile">Add file</a> | |
<a id="addfolder">Add folder</a> | |
</div> | |
<div class="filemanagement"> | |
<ul> | |
</ul> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment