-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·39 lines (34 loc) · 1.62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head lang="en">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no, height=device-height">
<meta charset="UTF-8">
<title>Piano Roll</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" media="screen">
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="bower_components/jquery-ui/themes/base/resizable.css" />
<link rel="stylesheet" type="text/css" href="css/base.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/piano_roll.css" media="screen">
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="js/jquery.numeric.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="src/model/Note.js"></script>
<script src="src/model/Track.js"></script>
<script src="App.js"></script>
<script src="src/piano-roll/piano-roll.js"></script>
<script src="src/note/note.js"></script>
<script src="src/transport/transport.js"></script>
<script src="src/file-input/file-input.js"></script>
<script src="src/MIDIFileReader.js"></script>
<script src="src/simple-synth-player.js"></script>
</head>
<body ng-app="PianoRollApp">
<transport></transport>
<file-input></file-input>
<div style="clear: both;"></div>
<piano-roll></piano-roll>
</body>
</html>