Skip to content

Commit 4df5743

Browse files
committed
Merge branch 'develop'
2 parents fd9d6d1 + 5958310 commit 4df5743

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

assets/js/template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
window._config = {
22
isDebug: location.hash.slice(1) === 'is-debug' ||
33
['localhost', '127.0.0.1', 'dev.bootstrap-table.com'].indexOf(location.hostname) > -1,
4-
cdnUrl: 'https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.1/dist/',
4+
cdnUrl: 'https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.2/dist/',
55
localUrl: '../bootstrap-table/src/',
66
testUrl: '/src/'
77
}

crud/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8">
66
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css">
77
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/css/all.min.css">
8-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.1/dist/bootstrap-table.min.css">
8+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.2/dist/bootstrap-table.min.css">
99
<style>
1010
.mr10 { margin-right: 10px; }
1111
.alert {
@@ -17,7 +17,7 @@
1717
<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
1818
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
1919
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.min.js"></script>
20-
<script src="https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.1/dist/bootstrap-table.min.js"></script>
20+
<script src="https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.2/dist/bootstrap-table.min.js"></script>
2121
</head>
2222
<body>
2323
<div class="container">

options/table-locale.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
links: ['bootstrap-table.min.css'],
66
scripts: [
77
'bootstrap-table.min.js',
8-
'https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.1/dist/bootstrap-table-locale-all.min.js'
8+
'https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.2/dist/bootstrap-table-locale-all.min.js'
99
]
1010
})
1111
</script>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-table-examples",
3-
"version": "1.24.1",
3+
"version": "1.24.2",
44
"description": "bootstrap-table-examples",
55
"type": "module",
66
"repository": {

vue-starter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@popperjs/core": "^2.11.8",
1212
"bootstrap": "^5.3.3",
1313
"bootstrap-icons": "^1.11.3",
14-
"bootstrap-table": "^1.24.1",
14+
"bootstrap-table": "^1.24.2",
1515
"jquery": "^3.7.1",
1616
"tableexport.jquery.plugin": "^1.30.0",
1717
"vue": "^3.5.13"

webpack-starter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"@popperjs/core": "^2.11.8",
1515
"bootstrap": "^5.3.3",
16-
"bootstrap-table": "^1.24.1",
16+
"bootstrap-table": "^1.24.2",
1717
"jquery": "^3.7.1"
1818
},
1919
"scripts": {

welcome.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
scripts: [
99
'https://cdn.jsdelivr.net/npm/tableexport.jquery.plugin@1.29.0/tableExport.min.js',
1010
'bootstrap-table.min.js',
11-
'https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.1/dist/bootstrap-table-locale-all.min.js',
11+
'https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.2/dist/bootstrap-table-locale-all.min.js',
1212
'extensions/export/bootstrap-table-export.min.js'
1313
]
1414
})

welcomes/vue-component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
scripts: [
99
'https://unpkg.com/vue@3/dist/vue.global.js',
1010
'bootstrap-table.min.js',
11-
'https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.1/dist/bootstrap-table-vue.umd.js'
11+
'https://cdn.jsdelivr.net/npm/bootstrap-table@1.24.2/dist/bootstrap-table-vue.umd.js'
1212
]
1313
})
1414
</script>

0 commit comments

Comments
 (0)