index.html 1.73 KB
Newer Older
1
2
3
4
5
6
<!DOCTYPE HTML>
<html>
<head>
  <title>Bootstrap Plugin Test Suite</title>

  <!-- jquery -->
7
8
  <!--<script src="http://code.jquery.com/jquery-1.7.min.js"></script>-->
  <script src="vendor/jquery.js"></script>
9
10
11
12
13

  <!-- qunit -->
  <link rel="stylesheet" href="vendor/qunit.css" type="text/css" media="screen" />
  <script src="vendor/qunit.js"></script>

14
  <!-- phantomjs logging script-->
fat's avatar
fat committed
15
  <script src="unit/phantom.js"></script>
16

Jacob Thornton's avatar
Jacob Thornton committed
17
  <!--  plugin sources -->
fat's avatar
fat committed
18
19
20
21
22
23
24
25
26
27
28
29
  <script src="../../js/transition.js"></script>
  <script src="../../js/alert.js"></script>
  <script src="../../js/button.js"></script>
  <script src="../../js/carousel.js"></script>
  <script src="../../js/collapse.js"></script>
  <script src="../../js/dropdown.js"></script>
  <script src="../../js/modal.js"></script>
  <script src="../../js/scrollspy.js"></script>
  <script src="../../js/tab.js"></script>
  <script src="../../js/tooltip.js"></script>
  <script src="../../js/popover.js"></script>
  <script src="../../js/affix.js"></script>
30
31

  <!-- unit tests -->
fat's avatar
fat committed
32
33
34
35
36
37
38
39
40
41
42
43
  <script src="unit/transition.js"></script>
  <script src="unit/alert.js"></script>
  <script src="unit/button.js"></script>
  <script src="unit/carousel.js"></script>
  <script src="unit/collapse.js"></script>
  <script src="unit/dropdown.js"></script>
  <script src="unit/modal.js"></script>
  <script src="unit/scrollspy.js"></script>
  <script src="unit/tab.js"></script>
  <script src="unit/tooltip.js"></script>
  <script src="unit/popover.js"></script>
  <script src="unit/affix.js"></script>
Jacob Thornton's avatar
Jacob Thornton committed
44
</head>
45
46
47
48
49
50
<body>
  <div>
    <h1 id="qunit-header">Bootstrap Plugin Test Suite</h1>
    <h2 id="qunit-banner"></h2>
    <h2 id="qunit-userAgent"></h2>
    <ol id="qunit-tests"></ol>
51
    <div id="qunit-fixture"></div>
52
53
  </div>
</body>
54
</html>