Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
11 Zeilen
321 B
JavaScript
11 Zeilen
321 B
JavaScript
(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);
|
|
}
|
|
});
|
|
})();
|