0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00

Handle wizard routes in DiscourseURL.routeTo

Dieser Commit ist enthalten in:
Angus McLeod 2018-03-14 12:35:38 +08:00
Ursprung c3f7257a2b
Commit 5d6506355e

Datei anzeigen

@ -1,4 +1,5 @@
import { withPluginApi } from 'discourse/lib/plugin-api'; import { withPluginApi } from 'discourse/lib/plugin-api';
import DiscourseURL from 'discourse/lib/url';
export default { export default {
name: 'custom-wizard-edits', name: 'custom-wizard-edits',
@ -21,5 +22,13 @@ export default {
} }
}); });
}); });
const existing = DiscourseURL.routeTo;
DiscourseURL.routeTo = function(path, opts) {
if (path.indexOf('/w/') > -1) {
return window.location = path;
}
return existing.apply(this, [path, opts]);
};
} }
}; };