Skip to content

Instantly share code, notes, and snippets.

@rominirani
Created August 16, 2013 08:03
Show Gist options
  • Save rominirani/6248130 to your computer and use it in GitHub Desktop.
Save rominirani/6248130 to your computer and use it in GitHub Desktop.
Episode #9 : Firefox OS Tutorial : Device Storage : index.html
<!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