forked from Silverwolf90/vexflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow.html
52 lines (46 loc) · 1.54 KB
/
flow.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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>VexFlow 2 - JavaScript Music Notation and Guitar Tab</title>
<link rel="stylesheet" href="flow.css" type="text/css" media="screen" />
<!-- VexFlow Sources -->
<script src="../build/vexflow-debug.js"></script>
<!-- Test Dependencies: jQuery, QUnit -->
<link rel="stylesheet" href="support/qunit.css" type="text/css" media="screen" />
<script src="support/jquery.js"></script>
<script src="support/qunit.js"></script>
<!-- VexFlow Tests. Note the charset below: this is required for
the measureText cache, since the index contains weird unicode
characters. -->
<script src="../build/vexflow-tests.js" charset="utf-8"></script>
<script>
$(function() {
// Show only failed tests.
QUnit.config.hidepassed = true;
QUnit.config.noglobals = true;
VF.Test.run();
});
</script>
</head>
<body>
<div style="text-align: center;">
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<div>
<h2>
[ <a href="http://vexflow.com">Home</a> ]
[ <a href="http://github.com/0xfe/vexflow">GitHub</a> ]
</h2>
<h3>Don't forget to run the <a href="https://github.com/0xfe/vexflow/wiki/Visual-Regression-Tests">Visual Regression Tests</a>!</h3>
</div>
<p/>
<div id="vexflow_testoutput"></div>
<p/>
<p class="vf-footer">
[ <a href="http://vexflow.com">home</a> ]
[ <a href="http://github.com/0xfe/vexflow">github</a> ]
[ <a href="http://0xfe.muthanna.com">0xfe</a> ]
</p>
</div>
</body>
</html>