ember.js v3.28.0 -> v3.28.1 (#654)
This commit is contained in:
parent
58ac5d1840
commit
2dbac88d9a
|
@ -367,7 +367,7 @@ https://cdnjs.cloudflare.com/ajax/libs/element-ui/2.15.5/theme-chalk/fonts/eleme
|
|||
https://cdnjs.cloudflare.com/ajax/libs/element-ui/2.15.5/theme-chalk/index.min.css
|
||||
https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.13/ember.debug.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.18.2/ember.debug.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/ember.js/3.28.0/ember.debug.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/ember.js/3.28.1/ember.debug.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/exif-js/2.3.0/exif.min.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/ext-core/3.1.0/ext-core.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.7/css/jquery.fancybox.min.css
|
||||
|
|
|
@ -272,7 +272,7 @@ targets.setLastVersion = function (type, version) {
|
|||
} else if (type.startsWith('/ember.js/2.')) {
|
||||
return '2.18.2';
|
||||
} else if (type.startsWith('/ember.js/3.')) {
|
||||
return '3.28.0';
|
||||
return '3.28.1';
|
||||
} else if (type.startsWith('/ethjs')) {
|
||||
return '0.4.0';
|
||||
} else if (type.startsWith('/exif-js/2.')) {
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
<li>DataTables v1.10.25 -> v1.11.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/651">#651</a>)</li>
|
||||
<li>leaflet.markercluster v1.5.0 -> v1.5.1 (<a href="https://codeberg.org/nobody/LocalCDN/issues/652">#652</a>)</li>
|
||||
<li>Swiper v7.0.1 -> v7.0.2 (<a href="https://codeberg.org/nobody/LocalCDN/issues/653">#653</a>)</li>
|
||||
<li>ember.js v3.28.0 -> v3.28.1 (<a href="https://codeberg.org/nobody/LocalCDN/issues/654">#654</a>)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="generator-section">
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* Portions Copyright 2008-2011 Apple Inc. All rights reserved.
|
||||
* @license Licensed under MIT license
|
||||
* See https://raw.github.com/emberjs/ember.js/master/LICENSE
|
||||
* @version 3.28.0
|
||||
* @version 3.28.1
|
||||
*/
|
||||
/* eslint-disable no-var */
|
||||
|
||||
|
@ -18034,6 +18034,8 @@ define("@ember/-internals/routing/lib/services/router", ["exports", "@ember/-int
|
|||
|
||||
|
||||
urlFor(routeName, ...args) {
|
||||
this._router.setupRouter();
|
||||
|
||||
return this._router.generate(routeName, ...args);
|
||||
}
|
||||
/**
|
||||
|
@ -18153,6 +18155,9 @@ define("@ember/-internals/routing/lib/services/router", ["exports", "@ember/-int
|
|||
|
||||
recognize(url) {
|
||||
(true && !(url.indexOf(this.rootURL) === 0) && (0, _debug.assert)(`You must pass a url that begins with the application's rootURL "${this.rootURL}"`, url.indexOf(this.rootURL) === 0));
|
||||
|
||||
this._router.setupRouter();
|
||||
|
||||
var internalURL = cleanURL(url, this.rootURL);
|
||||
return this._router._routerMicrolib.recognize(internalURL);
|
||||
}
|
||||
|
@ -18170,6 +18175,9 @@ define("@ember/-internals/routing/lib/services/router", ["exports", "@ember/-int
|
|||
|
||||
recognizeAndLoad(url) {
|
||||
(true && !(url.indexOf(this.rootURL) === 0) && (0, _debug.assert)(`You must pass a url that begins with the application's rootURL "${this.rootURL}"`, url.indexOf(this.rootURL) === 0));
|
||||
|
||||
this._router.setupRouter();
|
||||
|
||||
var internalURL = cleanURL(url, this.rootURL);
|
||||
return this._router._routerMicrolib.recognizeAndLoad(internalURL);
|
||||
}
|
||||
|
@ -63182,7 +63190,7 @@ define("ember/version", ["exports"], function (_exports) {
|
|||
value: true
|
||||
});
|
||||
_exports.default = void 0;
|
||||
var _default = "3.28.0";
|
||||
var _default = "3.28.1";
|
||||
_exports.default = _default;
|
||||
});
|
||||
define("jquery/index", ["exports", "@ember/-internals/views"], function (_exports, _views) {
|
Loading…
Reference in New Issue