Added: Waypoints (jQuery) v4.0.0 (#69)
This commit is contained in:
parent
e4771d7cd0
commit
0590321627
|
@ -304,6 +304,7 @@ var mappings = {
|
|||
'underscore.js/{version}/underscore-min.': resources.underscore,
|
||||
'urlive/{version}/jquery.urlive.': resources.jqueryURLive,
|
||||
'vue/{version}/vue.min.js': resources.vueJs,
|
||||
'waypoints/{version}/jquery.waypoints.': resources.jQueryWaypoints,
|
||||
'webfont/{version}/webfont.js': resources.webfont,
|
||||
'webfont/{version}/webfontloader.js': resources.webfont,
|
||||
'webrtc-adapter/{version}/adapter.min.js': resources.webRTCadapter,
|
||||
|
|
|
@ -638,6 +638,11 @@ var resources = {
|
|||
'path': 'resources/vue/{version}/vue.min.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
// Waypoints (jQuery)
|
||||
'jQueryWaypoints': {
|
||||
'path': 'resources/waypoints/{version}/jquery.waypoints.min.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
// WebComponents.js
|
||||
'webcomponentsJS': {
|
||||
'path': 'resources/webcomponentsjs/{version}/webcomponents-loader.jsm',
|
||||
|
|
|
@ -508,6 +508,8 @@ helpers.setLastVersion = function (type, version) {
|
|||
return '1.0.28';
|
||||
} else if (type.includes('/vue/2.')) {
|
||||
return '2.6.11';
|
||||
} else if (type.includes('/waypoints/4.') && type.includes('jquery.waypoints')) {
|
||||
return '4.0.0';
|
||||
} else if (type.includes('webfont')) {
|
||||
return '1.6.28';
|
||||
} else if (type.includes('/webrtc-adapter/6.')) {
|
||||
|
@ -539,6 +541,7 @@ helpers.compareVersion = function (v1, v2) {
|
|||
};
|
||||
|
||||
const ListOfFiles = {
|
||||
'jquery.waypoints.min.jsm': 'Waypoints (jQuery)',
|
||||
'bootstrap-datepicker3.standalone.min.css': 'Bootstrap Datepicker 3 (CSS)',
|
||||
'jets.min.jsm': 'Jets.js',
|
||||
'lazyload.min.jsm': 'Vanilla Lazyload',
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
<li>Improved: Version selection</li>
|
||||
<li>Updated: README.md (<a href="https://codeberg.org/nobody/LocalCDN/issues/65#issuecomment-72825">#65</a>)</li>
|
||||
<li>Updated: Font Awesome v5.14.0</li>
|
||||
<li>Added: Waypoints (jQuery) v4.0.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/69">#69</a>)</li>
|
||||
</ul>
|
||||
<div id="generator-section">
|
||||
<div class="topic-label">
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue