mirror of
https://codeberg.org/nobody/LocalCDN.git
synced 2025-02-23 07:07:47 +01:00
Added jQuery Mobile v1.4.5
This commit is contained in:
parent
bad4187cd7
commit
6a865f993d
@ -238,6 +238,9 @@ var files = {
|
||||
// jQuery URLive
|
||||
'resources/urlive/1.1.1/jquery.urlive.min.jsm': true,
|
||||
|
||||
// jQuery Mobile
|
||||
'resources/jquery-mobile/1.4.5/jquery.mobile.min.jsm': true,
|
||||
|
||||
// JavaScript Cookie
|
||||
'resources/js-cookie/2.2.1/js.cookie.min.jsm': true,
|
||||
|
||||
|
@ -180,6 +180,7 @@ var mappings = {
|
||||
'jquery-{version}.': resources.jQuery,
|
||||
'ui/{version}/jquery-ui.js': resources.jQueryUI,
|
||||
'ui/{version}/jquery-ui.min.js': resources.jQueryUI,
|
||||
'mobile/{version}/jquery.mobile': resources.jQueryMobile,
|
||||
|
||||
// Basic Shorthand Notations [Deprecated]
|
||||
'jquery-latest.': {
|
||||
|
@ -289,6 +289,11 @@ var resources = {
|
||||
'path': 'resources/jquery-validate/{version}/jquery.validate.min.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
// jQuery Mobile
|
||||
'jQueryMobile': {
|
||||
'path': 'resources/jquery-mobile/{version}/jquery.mobile.min.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
// js-cookie
|
||||
'jscookie': {
|
||||
'path': 'resources/js-cookie/{version}/js.cookie.min.jsm',
|
||||
|
@ -316,6 +316,8 @@ helpers.determineResourceName = function (filename) {
|
||||
return 'jQuery Validation Plugin';
|
||||
case 'jquery.urlive.min.jsm':
|
||||
return 'jQuery URLive';
|
||||
case 'jquery.mobile.min.jsm':
|
||||
return 'jQuery Mobile';
|
||||
case 'js.cookie.min.jsm':
|
||||
return 'JavaScript Cookie';
|
||||
case 'lazysizes.min.jsm':
|
||||
@ -559,6 +561,8 @@ helpers.setLastVersion = function (type, version) {
|
||||
version = '1.19.1';
|
||||
} else if (type.includes('/jquery-jeditable/1.')) {
|
||||
version = '1.8.0';
|
||||
} else if (type.includes('/mobile/1.')) {
|
||||
version = '1.4.5';
|
||||
} else if (type.includes('/urlive/1.')) {
|
||||
version = '1.1.1';
|
||||
} else if (type.includes('/js-cookie/2.')) {
|
||||
|
@ -26,6 +26,7 @@
|
||||
<li>Fixed: Identify correct charset if its in quotation marks</li>
|
||||
<li>Mapping: Removed duplicates</li>
|
||||
<li>DOM manipulation: Check if charset is supported by TextDecoder()</li>
|
||||
<li>Added: jQuery Mobile v1.4.5</li>
|
||||
</ul>
|
||||
|
||||
<div class="topic-label">
|
||||
|
10
resources/jquery-mobile/1.4.5/jquery.mobile.min.jsm
Normal file
10
resources/jquery-mobile/1.4.5/jquery.mobile.min.jsm
Normal file
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user