1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/wizard-custom-start.js

12 Zeilen
321 B
JavaScript

2019-01-17 05:45:21 +01:00
(function() {
var wizard = require('discourse/plugins/discourse-custom-wizard/wizard/custom-wizard').default.create();
wizard.start();
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
})();