Skip to content

Commit ef54e89

Browse files
committed
Update to v5.3.3
1 parent 90467de commit ef54e89

Some content is hidden

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

41 files changed

+128
-117
lines changed

Diff for: assets/javascripts/bootstrap-sprockets.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66
//= require ./bootstrap/util/config
77
//= require ./bootstrap/base-component
88
//= require ./bootstrap/dom/selector-engine
9-
//= require ./bootstrap/collapse
10-
//= require ./bootstrap/util/sanitizer
119
//= require ./bootstrap/util/backdrop
12-
//= require ./bootstrap/util/scrollbar
1310
//= require ./bootstrap/util/component-functions
1411
//= require ./bootstrap/util/focustrap
15-
//= require ./bootstrap/modal
12+
//= require ./bootstrap/util/scrollbar
13+
//= require ./bootstrap/offcanvas
14+
//= require ./bootstrap/dropdown
15+
//= require ./bootstrap/util/sanitizer
1616
//= require ./bootstrap/util/template-factory
1717
//= require ./bootstrap/tooltip
18-
//= require ./bootstrap/offcanvas
19-
//= require ./bootstrap/util/swipe
2018
//= require ./bootstrap/toast
21-
//= require ./bootstrap/button
22-
//= require ./bootstrap/alert
2319
//= require ./bootstrap/popover
20+
//= require ./bootstrap/util/swipe
21+
//= require ./bootstrap/alert
22+
//= require ./bootstrap/button
23+
//= require ./bootstrap/carousel
24+
//= require ./bootstrap/modal
25+
//= require ./bootstrap/collapse
2426
//= require ./bootstrap/scrollspy
25-
//= require ./bootstrap/dropdown
2627
//= require ./bootstrap/tab
27-
//= require ./bootstrap/carousel
2828
//= require ./bootstrap-global-this-undefine

Diff for: assets/javascripts/bootstrap.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {
@@ -229,7 +229,6 @@
229229
const reflow = element => {
230230
element.offsetHeight; // eslint-disable-line no-unused-expressions
231231
};
232-
233232
const getjQuery = () => {
234233
if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
235234
return window.jQuery;
@@ -667,7 +666,7 @@
667666
* Constants
668667
*/
669668

670-
const VERSION = '5.3.2';
669+
const VERSION = '5.3.3';
671670

672671
/**
673672
* Class definition
@@ -748,9 +747,9 @@
748747
if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {
749748
hrefAttribute = `#${hrefAttribute.split('#')[1]}`;
750749
}
751-
selector = hrefAttribute && hrefAttribute !== '#' ? parseSelector(hrefAttribute.trim()) : null;
750+
selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;
752751
}
753-
return selector;
752+
return selector ? selector.split(',').map(sel => parseSelector(sel)).join(',') : null;
754753
};
755754
const SelectorEngine = {
756755
find(selector, element = document.documentElement) {
@@ -2096,7 +2095,6 @@
20962095
// if false, we use the backdrop helper without adding any element to the dom
20972096
rootElement: 'body' // give the choice to place backdrop under different elements
20982097
};
2099-
21002098
const DefaultType$8 = {
21012099
className: 'string',
21022100
clickCallback: '(function|null)',
@@ -2221,7 +2219,6 @@
22212219
autofocus: true,
22222220
trapElement: null // The element to trap focus inside of
22232221
};
2224-
22252222
const DefaultType$7 = {
22262223
autofocus: 'boolean',
22272224
trapElement: 'element'
@@ -2948,7 +2945,10 @@
29482945
br: [],
29492946
col: [],
29502947
code: [],
2948+
dd: [],
29512949
div: [],
2950+
dl: [],
2951+
dt: [],
29522952
em: [],
29532953
hr: [],
29542954
h1: [],

Diff for: assets/javascripts/bootstrap.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: assets/javascripts/bootstrap/alert.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap alert.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap alert.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/base-component.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap base-component.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap base-component.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {
@@ -21,7 +21,7 @@
2121
* Constants
2222
*/
2323

24-
const VERSION = '5.3.2';
24+
const VERSION = '5.3.3';
2525

2626
/**
2727
* Class definition

Diff for: assets/javascripts/bootstrap/button.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap button.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap button.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/carousel.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap carousel.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap carousel.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/collapse.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap collapse.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap collapse.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/dom/data.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap data.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap data.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/dom/event-handler.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap event-handler.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap event-handler.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/dom/manipulator.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap manipulator.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap manipulator.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/dom/selector-engine.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap selector-engine.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap selector-engine.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {
@@ -33,9 +33,9 @@
3333
if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {
3434
hrefAttribute = `#${hrefAttribute.split('#')[1]}`;
3535
}
36-
selector = hrefAttribute && hrefAttribute !== '#' ? index_js.parseSelector(hrefAttribute.trim()) : null;
36+
selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;
3737
}
38-
return selector;
38+
return selector ? selector.split(',').map(sel => index_js.parseSelector(sel)).join(',') : null;
3939
};
4040
const SelectorEngine = {
4141
find(selector, element = document.documentElement) {

Diff for: assets/javascripts/bootstrap/dropdown.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap dropdown.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap dropdown.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/modal.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap modal.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap modal.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/offcanvas.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap offcanvas.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap offcanvas.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/popover.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap popover.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap popover.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/scrollspy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap scrollspy.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap scrollspy.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/tab.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap tab.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap tab.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/toast.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap toast.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap toast.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/tooltip.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap tooltip.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap tooltip.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/util/backdrop.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap backdrop.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap backdrop.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {
@@ -33,7 +33,6 @@
3333
// if false, we use the backdrop helper without adding any element to the dom
3434
rootElement: 'body' // give the choice to place backdrop under different elements
3535
};
36-
3736
const DefaultType = {
3837
className: 'string',
3938
clickCallback: '(function|null)',

Diff for: assets/javascripts/bootstrap/util/component-functions.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap component-functions.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap component-functions.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/util/config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap config.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap config.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/util/focustrap.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap focustrap.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap focustrap.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {
@@ -33,7 +33,6 @@
3333
autofocus: true,
3434
trapElement: null // The element to trap focus inside of
3535
};
36-
3736
const DefaultType = {
3837
autofocus: 'boolean',
3938
trapElement: 'element'

Diff for: assets/javascripts/bootstrap/util/index.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap index.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap index.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {
@@ -162,7 +162,6 @@
162162
const reflow = element => {
163163
element.offsetHeight; // eslint-disable-line no-unused-expressions
164164
};
165-
166165
const getjQuery = () => {
167166
if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
168167
return window.jQuery;

Diff for: assets/javascripts/bootstrap/util/sanitizer.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap sanitizer.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap sanitizer.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {
@@ -27,7 +27,10 @@
2727
br: [],
2828
col: [],
2929
code: [],
30+
dd: [],
3031
div: [],
32+
dl: [],
33+
dt: [],
3134
em: [],
3235
hr: [],
3336
h1: [],

Diff for: assets/javascripts/bootstrap/util/scrollbar.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap scrollbar.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap scrollbar.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/util/swipe.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap swipe.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap swipe.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

Diff for: assets/javascripts/bootstrap/util/template-factory.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap template-factory.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap template-factory.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

0 commit comments

Comments
 (0)