Skip to content

Commit 0bbd14d

Browse files
committed
Update to upstream alpha 2
1 parent 303a643 commit 0bbd14d

43 files changed

Lines changed: 420 additions & 325 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/javascripts/bootstrap.js

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap v4.0.0-alpha (http://getbootstrap.com)
2+
* Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com)
33
* Copyright 2011-2015 Twitter, Inc.
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
55
*/
@@ -20,7 +20,7 @@ if (typeof jQuery === 'undefined') {
2020

2121
/**
2222
* --------------------------------------------------------------------------
23-
* Bootstrap (v4.0.0): util.js
23+
* Bootstrap (v4.0.0-alpha.2): util.js
2424
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
2525
* --------------------------------------------------------------------------
2626
*/
@@ -129,7 +129,7 @@ var Util = (function ($) {
129129

130130
getUID: function getUID(prefix) {
131131
do {
132-
prefix += ~ ~(Math.random() * 1000000);
132+
prefix += ~ ~(Math.random() * 1000000); // "~~" acts like a faster Math.floor() here
133133
} while (document.getElementById(prefix));
134134
return prefix;
135135
},
@@ -185,7 +185,7 @@ var Util = (function ($) {
185185

186186
/**
187187
* --------------------------------------------------------------------------
188-
* Bootstrap (v4.0.0): alert.js
188+
* Bootstrap (v4.0.0-alpha.2): alert.js
189189
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
190190
* --------------------------------------------------------------------------
191191
*/
@@ -199,7 +199,7 @@ var Alert = (function ($) {
199199
*/
200200

201201
var NAME = 'alert';
202-
var VERSION = '4.0.0';
202+
var VERSION = '4.0.0-alpha';
203203
var DATA_KEY = 'bs.alert';
204204
var EVENT_KEY = '.' + DATA_KEY;
205205
var DATA_API_KEY = '.data-api';
@@ -371,7 +371,7 @@ var Alert = (function ($) {
371371

372372
/**
373373
* --------------------------------------------------------------------------
374-
* Bootstrap (v4.0.0): button.js
374+
* Bootstrap (v4.0.0-alpha.2): button.js
375375
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
376376
* --------------------------------------------------------------------------
377377
*/
@@ -385,7 +385,7 @@ var Button = (function ($) {
385385
*/
386386

387387
var NAME = 'button';
388-
var VERSION = '4.0.0';
388+
var VERSION = '4.0.0-alpha';
389389
var DATA_KEY = 'bs.button';
390390
var EVENT_KEY = '.' + DATA_KEY;
391391
var DATA_API_KEY = '.data-api';
@@ -537,7 +537,7 @@ var Button = (function ($) {
537537

538538
/**
539539
* --------------------------------------------------------------------------
540-
* Bootstrap (v4.0.0): carousel.js
540+
* Bootstrap (v4.0.0-alpha.2): carousel.js
541541
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
542542
* --------------------------------------------------------------------------
543543
*/
@@ -551,7 +551,7 @@ var Carousel = (function ($) {
551551
*/
552552

553553
var NAME = 'carousel';
554-
var VERSION = '4.0.0';
554+
var VERSION = '4.0.0-alpha';
555555
var DATA_KEY = 'bs.carousel';
556556
var EVENT_KEY = '.' + DATA_KEY;
557557
var DATA_API_KEY = '.data-api';
@@ -1009,7 +1009,7 @@ var Carousel = (function ($) {
10091009

10101010
/**
10111011
* --------------------------------------------------------------------------
1012-
* Bootstrap (v4.0.0): collapse.js
1012+
* Bootstrap (v4.0.0-alpha.2): collapse.js
10131013
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
10141014
* --------------------------------------------------------------------------
10151015
*/
@@ -1023,7 +1023,7 @@ var Collapse = (function ($) {
10231023
*/
10241024

10251025
var NAME = 'collapse';
1026-
var VERSION = '4.0.0';
1026+
var VERSION = '4.0.0-alpha';
10271027
var DATA_KEY = 'bs.collapse';
10281028
var EVENT_KEY = '.' + DATA_KEY;
10291029
var DATA_API_KEY = '.data-api';
@@ -1367,7 +1367,7 @@ var Collapse = (function ($) {
13671367

13681368
/**
13691369
* --------------------------------------------------------------------------
1370-
* Bootstrap (v4.0.0): dropdown.js
1370+
* Bootstrap (v4.0.0-alpha.2): dropdown.js
13711371
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
13721372
* --------------------------------------------------------------------------
13731373
*/
@@ -1381,7 +1381,7 @@ var Dropdown = (function ($) {
13811381
*/
13821382

13831383
var NAME = 'dropdown';
1384-
var VERSION = '4.0.0';
1384+
var VERSION = '4.0.0-alpha';
13851385
var DATA_KEY = 'bs.dropdown';
13861386
var EVENT_KEY = '.' + DATA_KEY;
13871387
var DATA_API_KEY = '.data-api';
@@ -1654,7 +1654,7 @@ var Dropdown = (function ($) {
16541654

16551655
/**
16561656
* --------------------------------------------------------------------------
1657-
* Bootstrap (v4.0.0): modal.js
1657+
* Bootstrap (v4.0.0-alpha.2): modal.js
16581658
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
16591659
* --------------------------------------------------------------------------
16601660
*/
@@ -1668,7 +1668,7 @@ var Modal = (function ($) {
16681668
*/
16691669

16701670
var NAME = 'modal';
1671-
var VERSION = '4.0.0';
1671+
var VERSION = '4.0.0-alpha';
16721672
var DATA_KEY = 'bs.modal';
16731673
var EVENT_KEY = '.' + DATA_KEY;
16741674
var DATA_API_KEY = '.data-api';
@@ -2184,7 +2184,7 @@ var Modal = (function ($) {
21842184

21852185
/**
21862186
* --------------------------------------------------------------------------
2187-
* Bootstrap (v4.0.0): scrollspy.js
2187+
* Bootstrap (v4.0.0-alpha.2): scrollspy.js
21882188
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
21892189
* --------------------------------------------------------------------------
21902190
*/
@@ -2198,7 +2198,7 @@ var ScrollSpy = (function ($) {
21982198
*/
21992199

22002200
var NAME = 'scrollspy';
2201-
var VERSION = '4.0.0';
2201+
var VERSION = '4.0.0-alpha';
22022202
var DATA_KEY = 'bs.scrollspy';
22032203
var EVENT_KEY = '.' + DATA_KEY;
22042204
var DATA_API_KEY = '.data-api';
@@ -2498,7 +2498,7 @@ var ScrollSpy = (function ($) {
24982498

24992499
/**
25002500
* --------------------------------------------------------------------------
2501-
* Bootstrap (v4.0.0): tab.js
2501+
* Bootstrap (v4.0.0-alpha.2): tab.js
25022502
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
25032503
* --------------------------------------------------------------------------
25042504
*/
@@ -2512,7 +2512,7 @@ var Tab = (function ($) {
25122512
*/
25132513

25142514
var NAME = 'tab';
2515-
var VERSION = '4.0.0';
2515+
var VERSION = '4.0.0-alpha';
25162516
var DATA_KEY = 'bs.tab';
25172517
var EVENT_KEY = '.' + DATA_KEY;
25182518
var DATA_API_KEY = '.data-api';
@@ -2757,7 +2757,7 @@ var Tab = (function ($) {
27572757

27582758
/**
27592759
* --------------------------------------------------------------------------
2760-
* Bootstrap (v4.0.0): tooltip.js
2760+
* Bootstrap (v4.0.0-alpha.2): tooltip.js
27612761
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
27622762
* --------------------------------------------------------------------------
27632763
*/
@@ -2779,7 +2779,7 @@ var Tooltip = (function ($) {
27792779
*/
27802780

27812781
var NAME = 'tooltip';
2782-
var VERSION = '4.0.0';
2782+
var VERSION = '4.0.0-alpha';
27832783
var DATA_KEY = 'bs.tooltip';
27842784
var EVENT_KEY = '.' + DATA_KEY;
27852785
var JQUERY_NO_CONFLICT = $.fn[NAME];
@@ -3368,7 +3368,7 @@ var Tooltip = (function ($) {
33683368

33693369
/**
33703370
* --------------------------------------------------------------------------
3371-
* Bootstrap (v4.0.0): popover.js
3371+
* Bootstrap (v4.0.0-alpha.2): popover.js
33723372
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
33733373
* --------------------------------------------------------------------------
33743374
*/
@@ -3382,7 +3382,7 @@ var Popover = (function ($) {
33823382
*/
33833383

33843384
var NAME = 'popover';
3385-
var VERSION = '4.0.0';
3385+
var VERSION = '4.0.0-alpha';
33863386
var DATA_KEY = 'bs.popover';
33873387
var EVENT_KEY = '.' + DATA_KEY;
33883388
var JQUERY_NO_CONFLICT = $.fn[NAME];

assets/javascripts/bootstrap.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/bootstrap/alert.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
66

77
/**
88
* --------------------------------------------------------------------------
9-
* Bootstrap (v4.0.0): alert.js
9+
* Bootstrap (v4.0.0-alpha.2): alert.js
1010
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1111
* --------------------------------------------------------------------------
1212
*/
@@ -20,7 +20,7 @@ var Alert = (function ($) {
2020
*/
2121

2222
var NAME = 'alert';
23-
var VERSION = '4.0.0';
23+
var VERSION = '4.0.0-alpha';
2424
var DATA_KEY = 'bs.alert';
2525
var EVENT_KEY = '.' + DATA_KEY;
2626
var DATA_API_KEY = '.data-api';

assets/javascripts/bootstrap/button.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* --------------------------------------------------------------------------
3-
* Bootstrap (v4.0.0): button.js
3+
* Bootstrap (v4.0.0-alpha.2): button.js
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
55
* --------------------------------------------------------------------------
66
*/
@@ -20,7 +20,7 @@ var Button = (function ($) {
2020
*/
2121

2222
var NAME = 'button';
23-
var VERSION = '4.0.0';
23+
var VERSION = '4.0.0-alpha';
2424
var DATA_KEY = 'bs.button';
2525
var EVENT_KEY = '.' + DATA_KEY;
2626
var DATA_API_KEY = '.data-api';

assets/javascripts/bootstrap/carousel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
66

77
/**
88
* --------------------------------------------------------------------------
9-
* Bootstrap (v4.0.0): carousel.js
9+
* Bootstrap (v4.0.0-alpha.2): carousel.js
1010
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1111
* --------------------------------------------------------------------------
1212
*/
@@ -20,7 +20,7 @@ var Carousel = (function ($) {
2020
*/
2121

2222
var NAME = 'carousel';
23-
var VERSION = '4.0.0';
23+
var VERSION = '4.0.0-alpha';
2424
var DATA_KEY = 'bs.carousel';
2525
var EVENT_KEY = '.' + DATA_KEY;
2626
var DATA_API_KEY = '.data-api';

assets/javascripts/bootstrap/collapse.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
66

77
/**
88
* --------------------------------------------------------------------------
9-
* Bootstrap (v4.0.0): collapse.js
9+
* Bootstrap (v4.0.0-alpha.2): collapse.js
1010
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1111
* --------------------------------------------------------------------------
1212
*/
@@ -20,7 +20,7 @@ var Collapse = (function ($) {
2020
*/
2121

2222
var NAME = 'collapse';
23-
var VERSION = '4.0.0';
23+
var VERSION = '4.0.0-alpha';
2424
var DATA_KEY = 'bs.collapse';
2525
var EVENT_KEY = '.' + DATA_KEY;
2626
var DATA_API_KEY = '.data-api';

assets/javascripts/bootstrap/dropdown.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
66

77
/**
88
* --------------------------------------------------------------------------
9-
* Bootstrap (v4.0.0): dropdown.js
9+
* Bootstrap (v4.0.0-alpha.2): dropdown.js
1010
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1111
* --------------------------------------------------------------------------
1212
*/
@@ -20,7 +20,7 @@ var Dropdown = (function ($) {
2020
*/
2121

2222
var NAME = 'dropdown';
23-
var VERSION = '4.0.0';
23+
var VERSION = '4.0.0-alpha';
2424
var DATA_KEY = 'bs.dropdown';
2525
var EVENT_KEY = '.' + DATA_KEY;
2626
var DATA_API_KEY = '.data-api';

assets/javascripts/bootstrap/modal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
66

77
/**
88
* --------------------------------------------------------------------------
9-
* Bootstrap (v4.0.0): modal.js
9+
* Bootstrap (v4.0.0-alpha.2): modal.js
1010
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1111
* --------------------------------------------------------------------------
1212
*/
@@ -20,7 +20,7 @@ var Modal = (function ($) {
2020
*/
2121

2222
var NAME = 'modal';
23-
var VERSION = '4.0.0';
23+
var VERSION = '4.0.0-alpha';
2424
var DATA_KEY = 'bs.modal';
2525
var EVENT_KEY = '.' + DATA_KEY;
2626
var DATA_API_KEY = '.data-api';

assets/javascripts/bootstrap/popover.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== 'function'
1010

1111
/**
1212
* --------------------------------------------------------------------------
13-
* Bootstrap (v4.0.0): popover.js
13+
* Bootstrap (v4.0.0-alpha.2): popover.js
1414
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1515
* --------------------------------------------------------------------------
1616
*/
@@ -24,7 +24,7 @@ var Popover = (function ($) {
2424
*/
2525

2626
var NAME = 'popover';
27-
var VERSION = '4.0.0';
27+
var VERSION = '4.0.0-alpha';
2828
var DATA_KEY = 'bs.popover';
2929
var EVENT_KEY = '.' + DATA_KEY;
3030
var JQUERY_NO_CONFLICT = $.fn[NAME];

assets/javascripts/bootstrap/scrollspy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
66

77
/**
88
* --------------------------------------------------------------------------
9-
* Bootstrap (v4.0.0): scrollspy.js
9+
* Bootstrap (v4.0.0-alpha.2): scrollspy.js
1010
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1111
* --------------------------------------------------------------------------
1212
*/
@@ -20,7 +20,7 @@ var ScrollSpy = (function ($) {
2020
*/
2121

2222
var NAME = 'scrollspy';
23-
var VERSION = '4.0.0';
23+
var VERSION = '4.0.0-alpha';
2424
var DATA_KEY = 'bs.scrollspy';
2525
var EVENT_KEY = '.' + DATA_KEY;
2626
var DATA_API_KEY = '.data-api';

0 commit comments

Comments
 (0)