2019-01-17 05:45:21 +01:00
|
|
|
(function() {
|
|
|
|
var wizard = require('discourse/plugins/discourse-custom-wizard/wizard/custom-wizard').default.create();
|
|
|
|
wizard.start();
|
2020-09-01 13:28:14 +02:00
|
|
|
|
|
|
|
Object.keys(Ember.TEMPLATES).forEach(k => {
|
|
|
|
if (k.indexOf("select-kit") === 0) {
|
|
|
|
let template = Ember.TEMPLATES[k];
|
|
|
|
define(k, () => template);
|
|
|
|
}
|
|
|
|
});
|
2019-01-17 05:45:21 +01:00
|
|
|
})();
|