2016-12-20 17:06:53 -07:00

13 lines
298 B
JavaScript

module.exports = require('marko/widgets/legacy').defineComponent({
template: require('./template.marko'),
init: function(widgetConfig) {
this.name = widgetConfig.name;
},
getWidgetConfig: function(input) {
return {
name: input.name
};
}
});