Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
FIX: get-url deprecation
Dieser Commit ist enthalten in:
Ursprung
c5ccd638f7
Commit
15c24b6098
2 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen
|
@ -28,8 +28,6 @@ export default {
|
|||
|
||||
Discourse.Model = EmberObject.extend();
|
||||
Discourse.__container__ = app.__container__;
|
||||
Discourse.getURLWithCDN = getUrl;
|
||||
Discourse.getURL = getUrl;
|
||||
|
||||
registerRawHelpers(RawHandlebars, Handlebars);
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
import { ajax } from 'wizard/lib/ajax';
|
||||
import getURL from "discourse-common/lib/get-url";
|
||||
|
||||
const _loaded = {};
|
||||
const _loading = {};
|
||||
|
||||
|
@ -45,7 +47,7 @@ export default function loadScript(url, opts) {
|
|||
|
||||
|
||||
return new Ember.RSVP.Promise(function(resolve) {
|
||||
url = Discourse.getURL(url);
|
||||
url = getURL(url);
|
||||
|
||||
// If we already loaded this url
|
||||
if (_loaded[url]) { return resolve(); }
|
||||
|
|
Laden …
In neuem Issue referenzieren