index.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Bootstrap Plugin Test Suite</title>
  5. <!-- jquery -->
  6. <!--<script src="http://code.jquery.com/jquery-1.7.min.js"></script>-->
  7. <script src="vendor/jquery.js"></script>
  8. <!-- qunit -->
  9. <link rel="stylesheet" href="vendor/qunit.css" type="text/css" media="screen" />
  10. <script src="vendor/qunit.js"></script>
  11. <!-- phantomjs logging script-->
  12. <script src="unit/bootstrap-phantom.js"></script>
  13. <!-- plugin sources -->
  14. <script src="../../js/bootstrap-transition.js"></script>
  15. <script src="../../js/bootstrap-alert.js"></script>
  16. <script src="../../js/bootstrap-button.js"></script>
  17. <script src="../../js/bootstrap-carousel.js"></script>
  18. <script src="../../js/bootstrap-collapse.js"></script>
  19. <script src="../../js/bootstrap-dropdown.js"></script>
  20. <script src="../../js/bootstrap-modal.js"></script>
  21. <script src="../../js/bootstrap-scrollspy.js"></script>
  22. <script src="../../js/bootstrap-tab.js"></script>
  23. <script src="../../js/bootstrap-tooltip.js"></script>
  24. <script src="../../js/bootstrap-popover.js"></script>
  25. <script src="../../js/bootstrap-typeahead.js"></script>
  26. <script src="../../js/bootstrap-affix.js"></script>
  27. <!-- unit tests -->
  28. <script src="unit/bootstrap-transition.js"></script>
  29. <script src="unit/bootstrap-alert.js"></script>
  30. <script src="unit/bootstrap-button.js"></script>
  31. <script src="unit/bootstrap-carousel.js"></script>
  32. <script src="unit/bootstrap-collapse.js"></script>
  33. <script src="unit/bootstrap-dropdown.js"></script>
  34. <script src="unit/bootstrap-modal.js"></script>
  35. <script src="unit/bootstrap-scrollspy.js"></script>
  36. <script src="unit/bootstrap-tab.js"></script>
  37. <script src="unit/bootstrap-tooltip.js"></script>
  38. <script src="unit/bootstrap-popover.js"></script>
  39. <script src="unit/bootstrap-typeahead.js"></script>
  40. <script src="unit/bootstrap-affix.js"></script>
  41. </head>
  42. <body>
  43. <div>
  44. <h1 id="qunit-header">Bootstrap Plugin Test Suite</h1>
  45. <h2 id="qunit-banner"></h2>
  46. <h2 id="qunit-userAgent"></h2>
  47. <ol id="qunit-tests"></ol>
  48. <div id="qunit-fixture"></div>
  49. </div>
  50. </body>
  51. </html>