Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorCDAGaming <cstack2011@yahoo.com>2017-05-31 07:11:56 +0300
committerMark Otto <markd.otto@gmail.com>2017-05-31 07:11:56 +0300
commitccd86bdc967d8714f718c55bd13db967f2e849d2 (patch)
treec933d0503fa9488edbf099ae3c725be0fa71c8fe /js
parent8f9c883c32c574f39ec37d10d6bda6690896bac9 (diff)
Update Dependencies (REUPLOAD) (#22594)
* Update Dependencies (REUPLOAD) Uglify-JS: 2.8.22 > 3.0.3 QUnitJS: 2.3.1 > 2.3.2 PostCSS-CLI: 3.1.1 > 4.0.0 Clean-CSS-CLI: 4.0.12 > 4.1.0 Babel-Eslint: 7.2.2 > 7.2.3 AutoPrefixer: 6.7.7 > 7.0.1 * Updates More Dependencies Autoprefixer: v7.0.1 > v7.1.1 Clean-CSS-CLI: v4.1.0 > v4.1.3 Node-Sass: v4.5.2 > v4.5.3 PostCSS-FlexBugs-Fixes: v2.1.1 > v3.0.0 Uglify-JS: v3.0.3 > v3.0.11 Signed-off-by: CDAGaming <cstack2011@yahoo.com> * Update Gem Bundler Dependency Signed-off-by: CDAGaming <cstack2011@yahoo.com> * Update Gemfile.lock Dependency Signed-off-by: CDAGaming <cstack2011@yahoo.com> * Update QUnit Signed-off-by: CDAGaming <cstack2011@yahoo.com> * Update Uglify-JS to v3.0.13 Signed-off-by: CDAGaming <cstack2011@yahoo.com>
Diffstat (limited to 'js')
-rw-r--r--js/tests/vendor/qunit.css8
-rw-r--r--js/tests/vendor/qunit.js12
2 files changed, 10 insertions, 10 deletions
diff --git a/js/tests/vendor/qunit.css b/js/tests/vendor/qunit.css
index 90e1269f15..75d8b6279f 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 b399f417c6..fa728db5b6 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;
}