mirror of
https://codeberg.org/nobody/LocalCDN.git
synced 2025-06-05 21:49:31 +02:00
ember.js v3.28.0 -> v3.28.1 (#654)
This commit is contained in:
@@ -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) {
|
Reference in New Issue
Block a user