prefix file paths, add getUserMedia check, remove unused libs and shims, add getUserMedia module, button image and style to make it show up

This commit is contained in:
2014-08-19 19:22:51 -07:00
parent 844ca427a3
commit 581009fb71
7 changed files with 24 additions and 35 deletions

View File

@@ -12,9 +12,11 @@
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="vendor/modernizr/modernizr.js"></script>
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/app.css">
<script src="/vendor/modernizr/modernizr.js"></script>
<script src="/vendor/modernizr/feature-detects/getusermedia.js"></script>
</head>
<body>
<!--[if lt IE 8]>
@@ -22,9 +24,10 @@
<![endif]-->
<!-- Add your site or application content here -->
<p>Hello world! This is prototool.</p>
<p>Record all the audio</p>
<div class="button record"><input type="file" accept="audio/*;capture=microphone"></div>
<script src="vendor/requirejs/require.js" data-main="js/main"></script>
<script src="/vendor/requirejs/require.js" data-main="js/main"></script>
</body>
</html>