1
0
Fork 0

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 DiscourseURL from 'discourse/lib/url';
export default {
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]);
};
}
};