diff options
| author | Mark Otto <[email protected]> | 2014-11-11 19:25:16 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-11-11 19:25:16 -0800 |
| commit | 1e268ddfc30def5f4b2b0f2ace34b7de549ea830 (patch) | |
| tree | 7cc63bc43a6c3b603cef4f004a2285e5c034a710 /js/tests/index.html | |
| parent | 4f6aeaa6347725436296131c4d2b059243390a04 (diff) | |
| parent | 001d5e00c58bbb8e4d34c085c5b27b214a475bd5 (diff) | |
| download | bootstrap-1e268ddfc30def5f4b2b0f2ace34b7de549ea830.tar.xz bootstrap-1e268ddfc30def5f4b2b0f2ace34b7de549ea830.zip | |
Merge branch 'master' into labels-readme
Diffstat (limited to 'js/tests/index.html')
| -rw-r--r-- | js/tests/index.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/js/tests/index.html b/js/tests/index.html index 194f531aa..b32f0adc2 100644 --- a/js/tests/index.html +++ b/js/tests/index.html @@ -3,6 +3,7 @@ <head> <meta charset="utf-8"> <title>Bootstrap Plugin Test Suite</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- jQuery --> <script src="vendor/jquery.min.js"></script> @@ -12,7 +13,12 @@ <script src="vendor/qunit.js"></script> <style> #qunit-tests > li.pass { - display: none;/* Make it easier to see failing tests is Sauce screencasts */ + display: none;/* Make it easier to see failing tests in Sauce screencasts */ + } + + #qunit-fixture { + top: 0; + left: 0; } </style> <script> @@ -36,6 +42,7 @@ }) QUnit.testStart(function (testDetails) { + $(window).scrollTop(0) QUnit.log = function (details) { if (!details.result) { details.name = testDetails.name |
