1
0
mirror of https://codeberg.org/nobody/LocalCDN.git synced 2025-06-05 21:49:31 +02:00

Added: Bootstrap Table v1.18.0 (#163)

This commit is contained in:
nobody
2020-11-05 13:44:21 +01:00
parent 61fc4bef8a
commit 6ed01667d1
6 changed files with 38 additions and 0 deletions

View File

@@ -398,6 +398,10 @@ mappings.cdn = {
'backbone@{version}/backbone.min.': resources.backbone, 'backbone@{version}/backbone.min.': resources.backbone,
'bootstrap@{version}/dist/js/bootstrap.': resources.bootstrapJS, 'bootstrap@{version}/dist/js/bootstrap.': resources.bootstrapJS,
'bootstrap@{version}/dist/css/bootstrap.': resources.bootstrapCSS, 'bootstrap@{version}/dist/css/bootstrap.': resources.bootstrapCSS,
'bootstrap-table@{version}/dist/bootstrap-table.min.js': resources.bootstrapTableJS,
'bootstrap-table@{version}/dist/bootstrap-table.js': resources.bootstrapTableJS,
'bootstrap-table@{version}/dist/bootstrap-table.min.css': resources.bootstrapTableCSS,
'bootstrap-table@{version}/dist/bootstrap-table.css': resources.bootstrapTableCSS,
'clipboard@{version}/dist/clipboard.': resources.clipboardJS, 'clipboard@{version}/dist/clipboard.': resources.clipboardJS,
'dojo@{version}/dojo.': resources.dojo, 'dojo@{version}/dojo.': resources.dojo,
'ember-source@{version}/dist/ember.': resources.ember, 'ember-source@{version}/dist/ember.': resources.ember,

View File

@@ -243,6 +243,15 @@ var resources = {
'path': 'resources/bootstrap-slider/{version}/bootstrap-slider.min.jsm', 'path': 'resources/bootstrap-slider/{version}/bootstrap-slider.min.jsm',
'type': 'application/javascript' 'type': 'application/javascript'
}, },
// Bootstrap Table
'bootstrapTableJS': {
'path': 'resources/bootstrap-table/{version}/bootstrap-table.min.jsm',
'type': 'application/javascript'
},
'bootstrapTableCSS': {
'path': 'resources/bootstrap-table/{version}/bootstrap-table.min.css',
'type': 'text/css'
},
// Bootstrap Toggle // Bootstrap Toggle
'bootstrapToggleJS': { 'bootstrapToggleJS': {
'path': 'resources/bootstrap-toggle/{version}/js/bootstrap-toggle.min.jsm', 'path': 'resources/bootstrap-toggle/{version}/js/bootstrap-toggle.min.jsm',

View File

@@ -134,6 +134,8 @@ targets.setLastVersion = function (type, version) {
return '10.6.2'; return '10.6.2';
} else if (type.includes('/bootstrap-select/1.')) { } else if (type.includes('/bootstrap-select/1.')) {
return '1.13.17'; return '1.13.17';
} else if (type.includes('/bootstrap-table/1.')) {
return '1.18.0';
} else if (type.includes('/bootstrap-toggle/2.')) { } else if (type.includes('/bootstrap-toggle/2.')) {
return '2.2.2'; return '2.2.2';
} else if (type.includes('/bootstrap-3-typeahead/4.')) { } else if (type.includes('/bootstrap-3-typeahead/4.')) {
@@ -394,6 +396,8 @@ targets.determineResourceName = function (filename) {
}; };
const ListOfFiles = { const ListOfFiles = {
'bootstrap-table.min.jsm': 'Bootstrap Table (JS)',
'bootstrap-table.min.css': 'Bootstrap Table (CSS)',
'jquery.matchHeight-min.jsm': 'jquery.matchHeight.js', 'jquery.matchHeight-min.jsm': 'jquery.matchHeight.js',
'iscoll.min.jsm': 'iScroll', 'iscoll.min.jsm': 'iScroll',
'drawer.min.jsm': 'Drawer (JS)', 'drawer.min.jsm': 'Drawer (JS)',

View File

@@ -33,6 +33,7 @@
<li>Added: Drawer v3.2.2 (<a href="https://codeberg.org/nobody/LocalCDN/issues/162">#162</a>)</li> <li>Added: Drawer v3.2.2 (<a href="https://codeberg.org/nobody/LocalCDN/issues/162">#162</a>)</li>
<li>Added: iScroll v5.2.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/162">#162</a>)</li> <li>Added: iScroll v5.2.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/162">#162</a>)</li>
<li>Added: jquery.matchHeight v0.7.2 (<a href="https://codeberg.org/nobody/LocalCDN/issues/162">#162</a>)</li> <li>Added: jquery.matchHeight v0.7.2 (<a href="https://codeberg.org/nobody/LocalCDN/issues/162">#162</a>)</li>
<li>Added: Bootstrap Table v1.18.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/163">#163</a>)</li>
</ul> </ul>
<div id="generator-section"> <div id="generator-section">
<div class="topic-label"> <div class="topic-label">

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long