diff options
| author | Mark Otto <[email protected]> | 2017-05-31 09:09:55 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-05-31 09:09:55 -0700 |
| commit | f1a7f1f56abafc5111b588d66481fc49fbe853a8 (patch) | |
| tree | ba5f13c6230155ec7cfd8c349121c3f1c48e6cd4 /js | |
| parent | c3323d7b2a4a4947a378e9fbeafd4c0dbee0d8bb (diff) | |
| parent | a78e86ae3b04dde643017359837b45a733350a33 (diff) | |
| download | bootstrap-f1a7f1f56abafc5111b588d66481fc49fbe853a8.tar.xz bootstrap-f1a7f1f56abafc5111b588d66481fc49fbe853a8.zip | |
Merge branch 'v4-docs-streamlined' of https://github.com/twbs/bootstrap into v4-docs-streamlined
Diffstat (limited to 'js')
| -rw-r--r-- | js/tests/vendor/qunit.css | 8 | ||||
| -rw-r--r-- | js/tests/vendor/qunit.js | 12 |
2 files changed, 10 insertions, 10 deletions
diff --git a/js/tests/vendor/qunit.css b/js/tests/vendor/qunit.css index 90e1269f1..75d8b6279 100644 --- a/js/tests/vendor/qunit.css +++ b/js/tests/vendor/qunit.css @@ -1,12 +1,12 @@ /*! - * QUnit 2.2.0 + * QUnit 2.3.2 * https://qunitjs.com/ * * Copyright jQuery Foundation and other contributors * Released under the MIT license * https://jquery.org/license * - * Date: 2017-03-11T16:19Z + * Date: 2017-04-18T02:19Z */ /** Font Family and Sizes */ @@ -236,7 +236,7 @@ } #qunit-tests.hidepass li.running, -#qunit-tests.hidepass li.pass { +#qunit-tests.hidepass li.pass:not(.todo) { visibility: hidden; position: absolute; width: 0; @@ -433,4 +433,4 @@ left: -10000px; width: 1000px; height: 1000px; -} +}
\ No newline at end of file diff --git a/js/tests/vendor/qunit.js b/js/tests/vendor/qunit.js index b399f417c..fa728db5b 100644 --- a/js/tests/vendor/qunit.js +++ b/js/tests/vendor/qunit.js @@ -1,12 +1,12 @@ /*! - * QUnit 2.2.0 + * QUnit 2.3.2 * https://qunitjs.com/ * * Copyright jQuery Foundation and other contributors * Released under the MIT license * https://jquery.org/license * - * Date: 2017-03-11T16:19Z + * Date: 2017-04-18T02:19Z */ (function (global$1) { 'use strict'; @@ -21,12 +21,12 @@ var document = window && window.document; var navigator = window && window.navigator; - var sessionStorage = function () { + var localSessionStorage = function () { var x = "qunit-test-string"; try { - sessionStorage.setItem(x, x); - sessionStorage.removeItem(x); - return sessionStorage; + global$1.sessionStorage.setItem(x, x); + global$1.sessionStorage.removeItem(x); + return global$1.sessionStorage; } catch (e) { return undefined; } |
