Created
August 16, 2013 08:03
-
-
Save rominirani/6248130 to your computer and use it in GitHub Desktop.
Episode #9 : Firefox OS Tutorial : Device Storage : index.html
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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0"> | |
<title>Notes</title> | |
<link rel="stylesheet" href="jquery.mobile-1.3.1.min.css" /> | |
<script src="jquery-1.7.1.min.js"></script> | |
<script src="jquery.mobile-1.3.1.min.js"></script> | |
<script src="app.js"></script> | |
</head> | |
<body> | |
<!-- Start of first page: #home --> | |
<div data-role="page" id="home"> | |
<div data-role="header" data-position="fixed" id="header"> | |
<h3>Device Storage</h3> | |
</div><!-- /header --> | |
<div data-role="content"> | |
<a href="#" id="browseSDCard" data-role="button" class="big">Browse SD Card</a> | |
<a href="#" id="browseVideos" data-role="button" class="big">Browse Videos</a> | |
<a href="#" id="browseMusic" data-role="button" class="big">Browse Music</a> | |
<a href="#" id="browsePictures" data-role="button" class="big">Browse Pictures</a> | |
<div id="results"></div> | |
</div><!-- /content --> | |
</div><!-- /page home --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment