mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-19 16:54:24 +01:00
Merge branch 'master' of github.com:twbs/bootstrap
Conflicts: dist/css/bootstrap.css.map dist/css/bootstrap.min.css docs/dist/css/bootstrap.css.map docs/dist/css/bootstrap.min.css
This commit is contained in:
commit
4045740c54
@ -33,7 +33,7 @@ module.exports = function (grunt) {
|
|||||||
' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n' +
|
' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n' +
|
||||||
' */\n',
|
' */\n',
|
||||||
// NOTE: This jqueryCheck code is duplicated in customizer.js; if making changes here, be sure to update the other copy too.
|
// NOTE: This jqueryCheck code is duplicated in customizer.js; if making changes here, be sure to update the other copy too.
|
||||||
jqueryCheck: 'if (typeof define == \'undefined\' && typeof exports == \'undefined\' && typeof jQuery == \'undefined\') { throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery\') }\n\n',
|
jqueryCheck: 'if (typeof jQuery === \'undefined\') { throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery\') }\n\n',
|
||||||
|
|
||||||
// Task configuration.
|
// Task configuration.
|
||||||
clean: {
|
clean: {
|
||||||
@ -232,7 +232,8 @@ module.exports = function (grunt) {
|
|||||||
cssmin: {
|
cssmin: {
|
||||||
options: {
|
options: {
|
||||||
compatibility: 'ie8',
|
compatibility: 'ie8',
|
||||||
keepSpecialComments: '*'
|
keepSpecialComments: '*',
|
||||||
|
noAdvanced: true
|
||||||
},
|
},
|
||||||
core: {
|
core: {
|
||||||
files: {
|
files: {
|
||||||
@ -378,6 +379,7 @@ module.exports = function (grunt) {
|
|||||||
options: {
|
options: {
|
||||||
build: process.env.TRAVIS_JOB_ID,
|
build: process.env.TRAVIS_JOB_ID,
|
||||||
concurrency: 10,
|
concurrency: 10,
|
||||||
|
maxRetries: 3,
|
||||||
urls: ['http://127.0.0.1:3000/js/tests/index.html'],
|
urls: ['http://127.0.0.1:3000/js/tests/index.html'],
|
||||||
browsers: grunt.file.readYAML('grunt/sauce_browsers.yml')
|
browsers: grunt.file.readYAML('grunt/sauce_browsers.yml')
|
||||||
}
|
}
|
||||||
|
2
dist/css/bootstrap-theme.min.css
vendored
2
dist/css/bootstrap-theme.min.css
vendored
File diff suppressed because one or more lines are too long
2
dist/css/bootstrap.css.map
vendored
2
dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
147
dist/js/bootstrap.js
vendored
147
dist/js/bootstrap.js
vendored
@ -4,7 +4,7 @@
|
|||||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQuery == 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') }
|
if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') }
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: transition.js v3.1.1
|
* Bootstrap: transition.js v3.1.1
|
||||||
@ -15,12 +15,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
||||||
// ============================================================
|
// ============================================================
|
||||||
@ -68,9 +64,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: alert.js v3.1.1
|
* Bootstrap: alert.js v3.1.1
|
||||||
@ -81,12 +75,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// ALERT CLASS DEFINITION
|
// ALERT CLASS DEFINITION
|
||||||
// ======================
|
// ======================
|
||||||
@ -167,9 +157,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
|
|
||||||
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: button.js v3.1.1
|
* Bootstrap: button.js v3.1.1
|
||||||
@ -180,12 +168,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// BUTTON PUBLIC CLASS DEFINITION
|
// BUTTON PUBLIC CLASS DEFINITION
|
||||||
// ==============================
|
// ==============================
|
||||||
@ -284,9 +268,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: carousel.js v3.1.1
|
* Bootstrap: carousel.js v3.1.1
|
||||||
@ -297,12 +279,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// CAROUSEL CLASS DEFINITION
|
// CAROUSEL CLASS DEFINITION
|
||||||
// =========================
|
// =========================
|
||||||
@ -493,6 +471,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
var href
|
var href
|
||||||
var $this = $(this)
|
var $this = $(this)
|
||||||
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
|
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
|
||||||
|
if (!$target.hasClass('carousel')) return
|
||||||
var options = $.extend({}, $target.data(), $this.data())
|
var options = $.extend({}, $target.data(), $this.data())
|
||||||
var slideIndex = $this.attr('data-slide-to')
|
var slideIndex = $this.attr('data-slide-to')
|
||||||
if (slideIndex) options.interval = false
|
if (slideIndex) options.interval = false
|
||||||
@ -513,9 +492,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: collapse.js v3.1.1
|
* Bootstrap: collapse.js v3.1.1
|
||||||
@ -526,12 +503,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// COLLAPSE PUBLIC CLASS DEFINITION
|
// COLLAPSE PUBLIC CLASS DEFINITION
|
||||||
// ================================
|
// ================================
|
||||||
@ -690,9 +663,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
Plugin.call($target, option)
|
Plugin.call($target, option)
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: dropdown.js v3.1.1
|
* Bootstrap: dropdown.js v3.1.1
|
||||||
@ -703,12 +674,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// DROPDOWN CLASS DEFINITION
|
// DROPDOWN CLASS DEFINITION
|
||||||
// =========================
|
// =========================
|
||||||
@ -848,9 +815,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
||||||
.on('keydown.bs.dropdown.data-api', toggle + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown)
|
.on('keydown.bs.dropdown.data-api', toggle + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown)
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: modal.js v3.1.1
|
* Bootstrap: modal.js v3.1.1
|
||||||
@ -861,12 +826,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// MODAL CLASS DEFINITION
|
// MODAL CLASS DEFINITION
|
||||||
// ======================
|
// ======================
|
||||||
@ -1135,9 +1096,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
Plugin.call($target, option, this)
|
Plugin.call($target, option, this)
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: tooltip.js v3.1.1
|
* Bootstrap: tooltip.js v3.1.1
|
||||||
@ -1149,12 +1108,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// TOOLTIP PUBLIC CLASS DEFINITION
|
// TOOLTIP PUBLIC CLASS DEFINITION
|
||||||
// ===============================
|
// ===============================
|
||||||
@ -1599,9 +1554,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: popover.js v3.1.1
|
* Bootstrap: popover.js v3.1.1
|
||||||
@ -1612,12 +1565,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// POPOVER PUBLIC CLASS DEFINITION
|
// POPOVER PUBLIC CLASS DEFINITION
|
||||||
// ===============================
|
// ===============================
|
||||||
@ -1719,9 +1668,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: scrollspy.js v3.1.1
|
* Bootstrap: scrollspy.js v3.1.1
|
||||||
@ -1732,12 +1679,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// SCROLLSPY CLASS DEFINITION
|
// SCROLLSPY CLASS DEFINITION
|
||||||
// ==========================
|
// ==========================
|
||||||
@ -1896,9 +1839,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: tab.js v3.1.1
|
* Bootstrap: tab.js v3.1.1
|
||||||
@ -1909,12 +1850,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// TAB CLASS DEFINITION
|
// TAB CLASS DEFINITION
|
||||||
// ====================
|
// ====================
|
||||||
@ -2031,9 +1968,7 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
Plugin.call($(this), 'show')
|
Plugin.call($(this), 'show')
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: affix.js v3.1.1
|
* Bootstrap: affix.js v3.1.1
|
||||||
@ -2044,12 +1979,8 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// AFFIX CLASS DEFINITION
|
// AFFIX CLASS DEFINITION
|
||||||
// ======================
|
// ======================
|
||||||
@ -2180,6 +2111,4 @@ if (typeof define == 'undefined' && typeof exports == 'undefined' && typeof jQue
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
3
dist/js/bootstrap.min.js
vendored
3
dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
@ -347,10 +347,10 @@
|
|||||||
|
|
||||||
|
|
||||||
<h3 id="grid-nesting">Nesting columns</h3>
|
<h3 id="grid-nesting">Nesting columns</h3>
|
||||||
<p>To nest your content with the default grid, add a new <code>.row</code> and set of <code>.col-md-*</code> columns within an existing <code>.col-md-*</code> column. Nested rows should include a set of columns that add up to 12 or less (it is not required that you use all 12 available columns).</p>
|
<p>To nest your content with the default grid, add a new <code>.row</code> and set of <code>.col-sm-*</code> columns within an existing <code>.col-sm-*</code> column. Nested rows should include a set of columns that add up to 12 or less (it is not required that you use all 12 available columns).</p>
|
||||||
<div class="row show-grid">
|
<div class="row show-grid">
|
||||||
<div class="col-sm-9">
|
<div class="col-sm-9">
|
||||||
Level 1: .col-md-9
|
Level 1: .col-sm-9
|
||||||
<div class="row show-grid">
|
<div class="row show-grid">
|
||||||
<div class="col-xs-8 col-sm-6">
|
<div class="col-xs-8 col-sm-6">
|
||||||
Level 2: .col-xs-8 .col-sm-6
|
Level 2: .col-xs-8 .col-sm-6
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<div class="bs-docs-section">
|
<div class="bs-docs-section">
|
||||||
<h1 id="examples" class="page-header">Examples</h1>
|
<h1 id="examples" class="page-header">Examples</h1>
|
||||||
|
|
||||||
<p class="lead">Build on the basic template above with Bootstrap's many components. See also <a href="#customizing">Customizing Bootstrap</a> for tips on maintaining your own Bootstrap variants.</p>
|
<p class="lead">Build on the basic template above with Bootstrap's many components. We encourage you to customize and adapt Bootstrap to suit your individual project's needs.</p>
|
||||||
|
|
||||||
<h3 id="examples-framework">Using the framework</h3>
|
<h3 id="examples-framework">Using the framework</h3>
|
||||||
<div class="row bs-examples">
|
<div class="row bs-examples">
|
||||||
|
2
docs/assets/css/docs.min.css
vendored
2
docs/assets/css/docs.min.css
vendored
File diff suppressed because one or more lines are too long
@ -306,7 +306,7 @@ window.onload = function () { // wait for load in a dumb way because B-0
|
|||||||
|
|
||||||
function generateJS(preamble) {
|
function generateJS(preamble) {
|
||||||
var $checked = $('#plugin-section input:checked')
|
var $checked = $('#plugin-section input:checked')
|
||||||
var jqueryCheck = 'if (typeof define == \'undefined\' && typeof exports == \'undefined\' && typeof jQuery == \'undefined\') { throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery\') }\n\n'
|
var jqueryCheck = 'if (typeof jQuery === "undefined") { throw new Error("Bootstrap\'s JavaScript requires jQuery") }\n\n'
|
||||||
|
|
||||||
if (!$checked.length) return false
|
if (!$checked.length) return false
|
||||||
|
|
||||||
|
4
docs/assets/js/customize.min.js
vendored
4
docs/assets/js/customize.min.js
vendored
File diff suppressed because one or more lines are too long
4
docs/assets/js/raw-files.min.js
vendored
4
docs/assets/js/raw-files.min.js
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap-theme.min.css
vendored
2
docs/dist/css/bootstrap-theme.min.css
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap.css.map
vendored
2
docs/dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap.min.css
vendored
2
docs/dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
3
docs/dist/js/bootstrap.min.js
vendored
3
docs/dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
@ -5,11 +5,10 @@
|
|||||||
browserName: "safari",
|
browserName: "safari",
|
||||||
platform: "OS X 10.9"
|
platform: "OS X 10.9"
|
||||||
},
|
},
|
||||||
# {
|
{
|
||||||
# browserName: "chrome",
|
browserName: "chrome",
|
||||||
# platform: "OS X 10.9",
|
platform: "OS X 10.9"
|
||||||
# version: "31"
|
},
|
||||||
# },
|
|
||||||
{
|
{
|
||||||
browserName: "firefox",
|
browserName: "firefox",
|
||||||
platform: "OS X 10.9"
|
platform: "OS X 10.9"
|
||||||
@ -27,16 +26,16 @@
|
|||||||
version: "10",
|
version: "10",
|
||||||
platform: "Windows 8"
|
platform: "Windows 8"
|
||||||
},
|
},
|
||||||
# {
|
{
|
||||||
# browserName: "internet explorer",
|
browserName: "internet explorer",
|
||||||
# version: "9",
|
version: "9",
|
||||||
# platform: "Windows 7"
|
platform: "Windows 7"
|
||||||
# },
|
},
|
||||||
# {
|
{
|
||||||
# browserName: "internet explorer",
|
browserName: "internet explorer",
|
||||||
# version: "8",
|
version: "8",
|
||||||
# platform: "Windows 7"
|
platform: "Windows 7"
|
||||||
# },
|
},
|
||||||
|
|
||||||
# { # Unofficial
|
# { # Unofficial
|
||||||
# browserName: "internet explorer",
|
# browserName: "internet explorer",
|
||||||
|
@ -11,9 +11,10 @@
|
|||||||
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
||||||
"disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true },
|
"disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true },
|
||||||
"disallowSpacesInsideArrayBrackets": true,
|
"disallowSpacesInsideArrayBrackets": true,
|
||||||
"disallowTrailingComma": true,
|
|
||||||
"disallowSpacesInsideParentheses": true,
|
"disallowSpacesInsideParentheses": true,
|
||||||
|
"disallowTrailingComma": true,
|
||||||
"disallowTrailingWhitespace": true,
|
"disallowTrailingWhitespace": true,
|
||||||
|
"requireCamelCaseOrUpperCaseIdentifiers": true,
|
||||||
"requireCapitalizedConstructors": true,
|
"requireCapitalizedConstructors": true,
|
||||||
"requireCommaBeforeLineBreak": true,
|
"requireCommaBeforeLineBreak": true,
|
||||||
"requireDotNotation": true,
|
"requireDotNotation": true,
|
||||||
|
@ -11,6 +11,5 @@
|
|||||||
"nonbsp" : true,
|
"nonbsp" : true,
|
||||||
"strict" : true,
|
"strict" : true,
|
||||||
"undef" : true,
|
"undef" : true,
|
||||||
"unused" : true,
|
"unused" : true
|
||||||
"predef" : [ "define", "require" ]
|
|
||||||
}
|
}
|
||||||
|
12
js/affix.js
12
js/affix.js
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// AFFIX CLASS DEFINITION
|
// AFFIX CLASS DEFINITION
|
||||||
// ======================
|
// ======================
|
||||||
@ -143,6 +139,4 @@
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
12
js/alert.js
12
js/alert.js
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// ALERT CLASS DEFINITION
|
// ALERT CLASS DEFINITION
|
||||||
// ======================
|
// ======================
|
||||||
@ -93,6 +89,4 @@
|
|||||||
|
|
||||||
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
12
js/button.js
12
js/button.js
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// BUTTON PUBLIC CLASS DEFINITION
|
// BUTTON PUBLIC CLASS DEFINITION
|
||||||
// ==============================
|
// ==============================
|
||||||
@ -111,6 +107,4 @@
|
|||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// CAROUSEL CLASS DEFINITION
|
// CAROUSEL CLASS DEFINITION
|
||||||
// =========================
|
// =========================
|
||||||
@ -203,6 +199,7 @@
|
|||||||
var href
|
var href
|
||||||
var $this = $(this)
|
var $this = $(this)
|
||||||
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
|
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
|
||||||
|
if (!$target.hasClass('carousel')) return
|
||||||
var options = $.extend({}, $target.data(), $this.data())
|
var options = $.extend({}, $target.data(), $this.data())
|
||||||
var slideIndex = $this.attr('data-slide-to')
|
var slideIndex = $this.attr('data-slide-to')
|
||||||
if (slideIndex) options.interval = false
|
if (slideIndex) options.interval = false
|
||||||
@ -223,6 +220,4 @@
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// COLLAPSE PUBLIC CLASS DEFINITION
|
// COLLAPSE PUBLIC CLASS DEFINITION
|
||||||
// ================================
|
// ================================
|
||||||
@ -171,6 +167,4 @@
|
|||||||
Plugin.call($target, option)
|
Plugin.call($target, option)
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// DROPDOWN CLASS DEFINITION
|
// DROPDOWN CLASS DEFINITION
|
||||||
// =========================
|
// =========================
|
||||||
@ -152,6 +148,4 @@
|
|||||||
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
||||||
.on('keydown.bs.dropdown.data-api', toggle + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown)
|
.on('keydown.bs.dropdown.data-api', toggle + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown)
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
12
js/modal.js
12
js/modal.js
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// MODAL CLASS DEFINITION
|
// MODAL CLASS DEFINITION
|
||||||
// ======================
|
// ======================
|
||||||
@ -281,6 +277,4 @@
|
|||||||
Plugin.call($target, option, this)
|
Plugin.call($target, option, this)
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// POPOVER PUBLIC CLASS DEFINITION
|
// POPOVER PUBLIC CLASS DEFINITION
|
||||||
// ===============================
|
// ===============================
|
||||||
@ -114,6 +110,4 @@
|
|||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// SCROLLSPY CLASS DEFINITION
|
// SCROLLSPY CLASS DEFINITION
|
||||||
// ==========================
|
// ==========================
|
||||||
@ -171,6 +167,4 @@
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
12
js/tab.js
12
js/tab.js
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// TAB CLASS DEFINITION
|
// TAB CLASS DEFINITION
|
||||||
// ====================
|
// ====================
|
||||||
@ -129,6 +125,4 @@
|
|||||||
Plugin.call($(this), 'show')
|
Plugin.call($(this), 'show')
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
@ -8,12 +8,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// TOOLTIP PUBLIC CLASS DEFINITION
|
// TOOLTIP PUBLIC CLASS DEFINITION
|
||||||
// ===============================
|
// ===============================
|
||||||
@ -458,6 +454,4 @@
|
|||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
@ -7,12 +7,8 @@
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
+function () { 'use strict';
|
+function ($) {
|
||||||
|
'use strict';
|
||||||
(function (o_o) {
|
|
||||||
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
||||||
// ============================================================
|
// ============================================================
|
||||||
@ -60,6 +56,4 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
}(jQuery);
|
||||||
|
|
||||||
}();
|
|
||||||
|
@ -6,6 +6,13 @@
|
|||||||
// Bar animations
|
// Bar animations
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
|
// WebKit
|
||||||
|
@-webkit-keyframes progress-bar-stripes {
|
||||||
|
from { background-position: 40px 0; }
|
||||||
|
to { background-position: 0 0; }
|
||||||
|
}
|
||||||
|
|
||||||
|
// Spec and IE10+
|
||||||
@keyframes progress-bar-stripes {
|
@keyframes progress-bar-stripes {
|
||||||
from { background-position: 40px 0; }
|
from { background-position: 40px 0; }
|
||||||
to { background-position: 0 0; }
|
to { background-position: 0 0; }
|
||||||
|
@ -74,10 +74,10 @@ p {
|
|||||||
// Emphasis & misc
|
// Emphasis & misc
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
// Ex: 14px base font * 85% = about 12px
|
// Ex: (12px small font / 14px base font) * 100% = about 85%
|
||||||
small,
|
small,
|
||||||
.small {
|
.small {
|
||||||
font-size: 85%;
|
font-size: floor((100% * @font-size-small / @font-size-base));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Undo browser default styling
|
// Undo browser default styling
|
||||||
|
@ -822,6 +822,8 @@
|
|||||||
//
|
//
|
||||||
//##
|
//##
|
||||||
|
|
||||||
|
//** Horizontal offset for forms and lists.
|
||||||
|
@component-offset-horizontal: 180px;
|
||||||
//** Text muted color
|
//** Text muted color
|
||||||
@text-muted: @gray-light;
|
@text-muted: @gray-light;
|
||||||
//** Abbreviations and acronyms border color
|
//** Abbreviations and acronyms border color
|
||||||
@ -838,14 +840,7 @@
|
|||||||
@page-header-border-color: @gray-lighter;
|
@page-header-border-color: @gray-lighter;
|
||||||
//** Width of horizontal description list titles
|
//** Width of horizontal description list titles
|
||||||
@dl-horizontal-offset: @component-offset-horizontal;
|
@dl-horizontal-offset: @component-offset-horizontal;
|
||||||
|
|
||||||
|
|
||||||
//== Miscellaneous
|
|
||||||
//
|
|
||||||
//##
|
|
||||||
|
|
||||||
//** Horizontal line color.
|
//** Horizontal line color.
|
||||||
@hr-border: @gray-lighter;
|
@hr-border: @gray-lighter;
|
||||||
|
|
||||||
//** Horizontal offset for forms and lists.
|
|
||||||
@component-offset-horizontal: 180px;
|
|
||||||
|
@ -51,8 +51,8 @@
|
|||||||
"grunt-exec": "~0.4.5",
|
"grunt-exec": "~0.4.5",
|
||||||
"grunt-html-validation": "~0.1.18",
|
"grunt-html-validation": "~0.1.18",
|
||||||
"grunt-jekyll": "~0.4.2",
|
"grunt-jekyll": "~0.4.2",
|
||||||
"grunt-jscs-checker": "~0.5.1",
|
"grunt-jscs-checker": "~0.6.0",
|
||||||
"grunt-saucelabs": "~8.0.2",
|
"grunt-saucelabs": "~8.1.0",
|
||||||
"grunt-sed": "~0.1.1",
|
"grunt-sed": "~0.1.1",
|
||||||
"load-grunt-tasks": "~0.6.0",
|
"load-grunt-tasks": "~0.6.0",
|
||||||
"markdown": "~0.5.0",
|
"markdown": "~0.5.0",
|
||||||
|
192
test-infra/npm-shrinkwrap.json
generated
192
test-infra/npm-shrinkwrap.json
generated
@ -56,8 +56,8 @@
|
|||||||
"resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz"
|
"resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz"
|
||||||
},
|
},
|
||||||
"eventemitter2": {
|
"eventemitter2": {
|
||||||
"version": "0.4.13",
|
"version": "0.4.14",
|
||||||
"resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.13.tgz"
|
"resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz"
|
||||||
},
|
},
|
||||||
"exit": {
|
"exit": {
|
||||||
"version": "0.1.2",
|
"version": "0.1.2",
|
||||||
@ -230,8 +230,8 @@
|
|||||||
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-1.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-1.3.1.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"caniuse-db": {
|
"caniuse-db": {
|
||||||
"version": "1.0.20140619",
|
"version": "1.0.20140622",
|
||||||
"resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.20140619.tgz"
|
"resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.20140622.tgz"
|
||||||
},
|
},
|
||||||
"fs-extra": {
|
"fs-extra": {
|
||||||
"version": "0.9.1",
|
"version": "0.9.1",
|
||||||
@ -700,8 +700,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"clean-css": {
|
"clean-css": {
|
||||||
"version": "2.2.2",
|
"version": "2.2.3",
|
||||||
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-2.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-2.2.3.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"commander": {
|
"commander": {
|
||||||
"version": "2.2.0",
|
"version": "2.2.0",
|
||||||
@ -1178,16 +1178,16 @@
|
|||||||
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
||||||
},
|
},
|
||||||
"form-data": {
|
"form-data": {
|
||||||
"version": "0.1.3",
|
"version": "0.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": {
|
"async": {
|
||||||
"version": "0.9.0",
|
"version": "0.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
||||||
},
|
},
|
||||||
"combined-stream": {
|
"combined-stream": {
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.5.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"delayed-stream": {
|
"delayed-stream": {
|
||||||
"version": "0.0.5",
|
"version": "0.0.5",
|
||||||
@ -1368,12 +1368,12 @@
|
|||||||
"resolved": "https://registry.npmjs.org/grunt-lib-phantomjs/-/grunt-lib-phantomjs-0.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/grunt-lib-phantomjs/-/grunt-lib-phantomjs-0.6.0.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"eventemitter2": {
|
"eventemitter2": {
|
||||||
"version": "0.4.13",
|
"version": "0.4.14",
|
||||||
"resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.13.tgz"
|
"resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz"
|
||||||
},
|
},
|
||||||
"phantomjs": {
|
"phantomjs": {
|
||||||
"version": "1.9.7-9",
|
"version": "1.9.7-10",
|
||||||
"resolved": "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.7-9.tgz",
|
"resolved": "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.7-10.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"adm-zip": {
|
"adm-zip": {
|
||||||
"version": "0.2.1",
|
"version": "0.2.1",
|
||||||
@ -1450,16 +1450,16 @@
|
|||||||
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
||||||
},
|
},
|
||||||
"form-data": {
|
"form-data": {
|
||||||
"version": "0.1.3",
|
"version": "0.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": {
|
"async": {
|
||||||
"version": "0.9.0",
|
"version": "0.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
||||||
},
|
},
|
||||||
"combined-stream": {
|
"combined-stream": {
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.5.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"delayed-stream": {
|
"delayed-stream": {
|
||||||
"version": "0.0.5",
|
"version": "0.0.5",
|
||||||
@ -1886,16 +1886,16 @@
|
|||||||
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
||||||
},
|
},
|
||||||
"form-data": {
|
"form-data": {
|
||||||
"version": "0.1.3",
|
"version": "0.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": {
|
"async": {
|
||||||
"version": "0.9.0",
|
"version": "0.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
||||||
},
|
},
|
||||||
"combined-stream": {
|
"combined-stream": {
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.5.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"delayed-stream": {
|
"delayed-stream": {
|
||||||
"version": "0.0.5",
|
"version": "0.0.5",
|
||||||
@ -2136,16 +2136,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"grunt-jscs-checker": {
|
"grunt-jscs-checker": {
|
||||||
"version": "0.5.1",
|
"version": "0.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/grunt-jscs-checker/-/grunt-jscs-checker-0.5.1.tgz",
|
"resolved": "https://registry.npmjs.org/grunt-jscs-checker/-/grunt-jscs-checker-0.6.0.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"hooker": {
|
"hooker": {
|
||||||
"version": "0.2.3",
|
"version": "0.2.3",
|
||||||
"resolved": "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz"
|
"resolved": "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz"
|
||||||
},
|
},
|
||||||
"jscs": {
|
"jscs": {
|
||||||
"version": "1.5.3",
|
"version": "1.5.4",
|
||||||
"resolved": "https://registry.npmjs.org/jscs/-/jscs-1.5.3.tgz",
|
"resolved": "https://registry.npmjs.org/jscs/-/jscs-1.5.4.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"colors": {
|
"colors": {
|
||||||
"version": "0.6.2",
|
"version": "0.6.2",
|
||||||
@ -2378,8 +2378,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"grunt-saucelabs": {
|
"grunt-saucelabs": {
|
||||||
"version": "8.0.2",
|
"version": "8.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/grunt-saucelabs/-/grunt-saucelabs-8.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/grunt-saucelabs/-/grunt-saucelabs-8.1.0.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"colors": {
|
"colors": {
|
||||||
"version": "0.6.2",
|
"version": "0.6.2",
|
||||||
@ -2406,16 +2406,16 @@
|
|||||||
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
||||||
},
|
},
|
||||||
"form-data": {
|
"form-data": {
|
||||||
"version": "0.1.3",
|
"version": "0.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": {
|
"async": {
|
||||||
"version": "0.9.0",
|
"version": "0.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
||||||
},
|
},
|
||||||
"combined-stream": {
|
"combined-stream": {
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.5.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"delayed-stream": {
|
"delayed-stream": {
|
||||||
"version": "0.0.5",
|
"version": "0.0.5",
|
||||||
@ -2756,8 +2756,8 @@
|
|||||||
"resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz"
|
"resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz"
|
||||||
},
|
},
|
||||||
"combined-stream": {
|
"combined-stream": {
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.5.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"delayed-stream": {
|
"delayed-stream": {
|
||||||
"version": "0.0.5",
|
"version": "0.0.5",
|
||||||
@ -3200,14 +3200,8 @@
|
|||||||
"resolved": "https://registry.npmjs.org/editor/-/editor-0.1.0.tgz"
|
"resolved": "https://registry.npmjs.org/editor/-/editor-0.1.0.tgz"
|
||||||
},
|
},
|
||||||
"fstream": {
|
"fstream": {
|
||||||
"version": "0.1.27",
|
"version": "0.1.28",
|
||||||
"resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.27.tgz",
|
"resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.28.tgz"
|
||||||
"dependencies": {
|
|
||||||
"mkdirp": {
|
|
||||||
"version": "0.3.5",
|
|
||||||
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"fstream-npm": {
|
"fstream-npm": {
|
||||||
"version": "0.1.7",
|
"version": "0.1.7",
|
||||||
@ -3215,7 +3209,31 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"fstream-ignore": {
|
"fstream-ignore": {
|
||||||
"version": "0.0.8",
|
"version": "0.0.8",
|
||||||
"resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-0.0.8.tgz"
|
"resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-0.0.8.tgz",
|
||||||
|
"dependencies": {
|
||||||
|
"fstream": {
|
||||||
|
"version": "0.1.28",
|
||||||
|
"resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.28.tgz",
|
||||||
|
"dependencies": {
|
||||||
|
"graceful-fs": {
|
||||||
|
"version": "3.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.2.tgz"
|
||||||
|
},
|
||||||
|
"inherits": {
|
||||||
|
"version": "2.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
|
||||||
|
},
|
||||||
|
"mkdirp": {
|
||||||
|
"version": "0.3.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"
|
||||||
|
},
|
||||||
|
"rimraf": {
|
||||||
|
"version": "2.2.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -3287,6 +3305,28 @@
|
|||||||
"version": "0.13.1",
|
"version": "0.13.1",
|
||||||
"resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-0.13.1.tgz",
|
"resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-0.13.1.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"fstream": {
|
||||||
|
"version": "0.1.28",
|
||||||
|
"resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.28.tgz",
|
||||||
|
"dependencies": {
|
||||||
|
"graceful-fs": {
|
||||||
|
"version": "3.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.2.tgz"
|
||||||
|
},
|
||||||
|
"inherits": {
|
||||||
|
"version": "2.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
|
||||||
|
},
|
||||||
|
"mkdirp": {
|
||||||
|
"version": "0.3.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"
|
||||||
|
},
|
||||||
|
"rimraf": {
|
||||||
|
"version": "2.2.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"mkdirp": {
|
"mkdirp": {
|
||||||
"version": "0.5.0",
|
"version": "0.5.0",
|
||||||
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz",
|
||||||
@ -3310,16 +3350,16 @@
|
|||||||
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
||||||
},
|
},
|
||||||
"form-data": {
|
"form-data": {
|
||||||
"version": "0.1.3",
|
"version": "0.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": {
|
"async": {
|
||||||
"version": "0.9.0",
|
"version": "0.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
||||||
},
|
},
|
||||||
"combined-stream": {
|
"combined-stream": {
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.5.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"delayed-stream": {
|
"delayed-stream": {
|
||||||
"version": "0.0.5",
|
"version": "0.0.5",
|
||||||
@ -3408,6 +3448,38 @@
|
|||||||
"semver": {
|
"semver": {
|
||||||
"version": "2.3.1",
|
"version": "2.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/semver/-/semver-2.3.1.tgz"
|
"resolved": "https://registry.npmjs.org/semver/-/semver-2.3.1.tgz"
|
||||||
|
},
|
||||||
|
"tar": {
|
||||||
|
"version": "0.1.20",
|
||||||
|
"resolved": "https://registry.npmjs.org/tar/-/tar-0.1.20.tgz",
|
||||||
|
"dependencies": {
|
||||||
|
"block-stream": {
|
||||||
|
"version": "0.0.7",
|
||||||
|
"resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.7.tgz"
|
||||||
|
},
|
||||||
|
"fstream": {
|
||||||
|
"version": "0.1.28",
|
||||||
|
"resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.28.tgz",
|
||||||
|
"dependencies": {
|
||||||
|
"graceful-fs": {
|
||||||
|
"version": "3.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.2.tgz"
|
||||||
|
},
|
||||||
|
"mkdirp": {
|
||||||
|
"version": "0.3.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"
|
||||||
|
},
|
||||||
|
"rimraf": {
|
||||||
|
"version": "2.2.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"inherits": {
|
||||||
|
"version": "2.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -3450,16 +3522,16 @@
|
|||||||
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
||||||
},
|
},
|
||||||
"form-data": {
|
"form-data": {
|
||||||
"version": "0.1.3",
|
"version": "0.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": {
|
"async": {
|
||||||
"version": "0.9.0",
|
"version": "0.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
||||||
},
|
},
|
||||||
"combined-stream": {
|
"combined-stream": {
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.5.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"delayed-stream": {
|
"delayed-stream": {
|
||||||
"version": "0.0.5",
|
"version": "0.0.5",
|
||||||
@ -3644,16 +3716,16 @@
|
|||||||
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"
|
||||||
},
|
},
|
||||||
"form-data": {
|
"form-data": {
|
||||||
"version": "0.1.3",
|
"version": "0.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": {
|
"async": {
|
||||||
"version": "0.9.0",
|
"version": "0.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
"resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz"
|
||||||
},
|
},
|
||||||
"combined-stream": {
|
"combined-stream": {
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.5.tgz",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"delayed-stream": {
|
"delayed-stream": {
|
||||||
"version": "0.0.5",
|
"version": "0.0.5",
|
||||||
@ -3784,8 +3856,14 @@
|
|||||||
"resolved": "https://registry.npmjs.org/sorted-object/-/sorted-object-1.0.0.tgz"
|
"resolved": "https://registry.npmjs.org/sorted-object/-/sorted-object-1.0.0.tgz"
|
||||||
},
|
},
|
||||||
"tar": {
|
"tar": {
|
||||||
"version": "0.1.19",
|
"version": "0.1.20",
|
||||||
"resolved": "https://registry.npmjs.org/tar/-/tar-0.1.19.tgz"
|
"resolved": "https://registry.npmjs.org/tar/-/tar-0.1.20.tgz",
|
||||||
|
"dependencies": {
|
||||||
|
"fstream": {
|
||||||
|
"version": "0.1.28",
|
||||||
|
"resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.28.tgz"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"text-table": {
|
"text-table": {
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user