diff options
| author | Jacob Thornton <[email protected]> | 2011-09-09 22:47:49 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-09-09 22:47:49 -0700 |
| commit | 5f4e30ed1d33f83b0fad3afc9174e193e6c3fdf4 (patch) | |
| tree | 105cd02ae9923fb2171f695e261e5311c81786b3 /js/tests/index.html | |
| parent | df3ca4d94a69436c1d6c53f5559aefca98fb2232 (diff) | |
| download | bootstrap-5f4e30ed1d33f83b0fad3afc9174e193e6c3fdf4.tar.xz bootstrap-5f4e30ed1d33f83b0fad3afc9174e193e6c3fdf4.zip | |
move js plugins to root dir, begin writing tests, and change modal plugin to be more boss like
Diffstat (limited to 'js/tests/index.html')
| -rw-r--r-- | js/tests/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/js/tests/index.html b/js/tests/index.html new file mode 100644 index 000000000..4f904b9c0 --- /dev/null +++ b/js/tests/index.html @@ -0,0 +1,38 @@ +<!DOCTYPE HTML> +<html> +<head> + <title>Bootstrap Plugin Test Suite</title> + + <!-- jquery --> + <script src="http://code.jquery.com/jquery-1.5.2.min.js"></script> + + <!-- qunit --> + <link rel="stylesheet" href="vendor/qunit.css" type="text/css" media="screen" /> + <script src="vendor/qunit.js"></script> + + <!-- plugin sources --> + <script src="../../js/bootstrap-alerts.js"></script> + <script src="../../js/bootstrap-dropdown.js"></script> + <script src="../../js/bootstrap-modal.js"></script> + <script src="../../js/bootstrap-tabs.js"></script> + <script src="../../js/bootstrap-twipsy.js"></script> + <script src="../../js/bootstrap-popover.js"></script> + + <!-- unit tests --> + <script src="unit/bootstrap-alerts.js"></script> + <script src="unit/bootstrap-dropdown.js"></script> + <script src="unit/bootstrap-modal.js"></script> + <script src="unit/bootstrap-popover.js"></script> + <script src="unit/bootstrap-tabs.js"></script> + <script src="unit/bootstrap-twipsy.js"></script> + +<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> + <div id="qunit-runoff"></div> + </div> +</body> +</html>
\ No newline at end of file |
