forked from ExactTarget/fuelux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
browser-globals.html
51 lines (42 loc) · 1.74 KB
/
browser-globals.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FuelUX Component Initialization (via Browser Globals)</title>
<link rel="stylesheet" href="../bower_components/qunit/qunit/qunit.css" media="screen">
</head>
<body>
<h1 id="qunit-header">Fuel UX Global Variable Test Suite</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture"></div>
<!-- If using browser globals, place scripts after markup. -->
<script src="../bower_components/jquery-1.9.1/jquery.js"></script>
<script src="../bower_components/qunit/qunit/qunit.js"></script>
<!-- Bootstrap -->
<script src="../bower_components/bootstrap/dist/js/bootstrap.js"></script>
<!-- Fuel UX Source - NOTE: These must be in particular order due to dependencies on other controls -->
<script src="../js/checkbox.js"></script>
<script src="../js/combobox.js"></script>
<script src="../js/datepicker.js"></script>
<script src="../js/dropdown-autoflip.js"></script>
<script src="../js/loader.js"></script>
<script src="../js/radio.js"></script>
<script src="../js/search.js"></script>
<script src="../js/selectlist.js"></script>
<script src="../js/spinbox.js"></script>
<script src="../js/tree.js"></script>
<script src="../js/wizard.js"></script>
<!-- Items with dependencies on other controls -->
<script src="../js/infinite-scroll.js"></script>
<script src="../js/pillbox.js"></script>
<script src="../js/repeater.js"></script>
<script src="../js/repeater-list.js"></script>
<script src="../js/repeater-thumbnail.js"></script>
<script src="../js/scheduler.js"></script>
<!-- Test -->
<script src="browser-globals.js"></script>
</body>
</html>