0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/initializers/custom-wizard-edits.js.es6

20 Zeilen
552 B
Text

2017-11-22 10:34:21 +01:00
import { withPluginApi } from 'discourse/lib/plugin-api';
import DiscourseURL from 'discourse/lib/url';
2017-11-22 10:34:21 +01:00
export default {
name: 'custom-wizard-edits',
initialize(container) {
const siteSettings = container.lookup('site-settings:main');
if (!siteSettings.custom_wizard_enabled) return;
const existing = DiscourseURL.routeTo;
DiscourseURL.routeTo = function(path, opts) {
2018-08-29 02:01:52 +02:00
if (path && path.indexOf('/w/') > -1) {
return window.location = path;
}
return existing.apply(this, [path, opts]);
};
2017-11-22 10:34:21 +01:00
}
};