Skip to content

Commit

Permalink
initial checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
max-mapper committed Jan 8, 2013
0 parents commit b91439d
Show file tree
Hide file tree
Showing 13 changed files with 1,792 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bundle.js
node_modules
4 changes: 4 additions & 0 deletions demo/demo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
var toolbar = require('toolbar')
toolbar('.bar-tab').on('select', function(selected) {
console.log(selected)
})
Binary file added demo/icons/coffeemug.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added demo/icons/cow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added demo/icons/eggs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added demo/icons/poptart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added demo/icons/toast.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Voxel HUD</title>

<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">

<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">

<!-- Set a shorter title for iOS6 devices when saved to home screen -->
<meta name="apple-mobile-web-app-title" content="Voxel HUD">

<!-- Include the compiled Ratchet CSS -->
<link rel="stylesheet" href="ratchet.css">
<style type="text/css">
li:hover { cursor: hand; cursor: pointer; }
</style>
</head>
<body>
<div class="content">
<p>
Icons designed by <a href="http://thenounproject.com/jacob" target="_blank">Jacob Halton</a> from The Noun Project
</p>
<nav class="bar-tab">
<ul class="tab-inner">
<li class="tab-item active">
<img class="tab-icon" src="icons/coffeemug.png">
<div class="tab-label">Mug</div>
</li>
<li class="tab-item">
<img class="tab-icon" src="icons/cow.png">
<div class="tab-label">Cow</div>
</li>
<li class="tab-item">
<img class="tab-icon" src="icons/eggs.png">
<div class="tab-label">Eggs</div>
</li>
<li class="tab-item">
<img class="tab-icon" src="icons/poptart.png">
<div class="tab-label">Poptart</div>
</li>
<li class="tab-item">
<img class="tab-icon" src="icons/toast.png">
<div class="tab-label">Toast</div>
</li>
</ul>
</nav>
</div>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>
Loading

0 comments on commit b91439d

Please sign in to comment.