2017-02-20 16:04:50 -07:00

11 lines
219 B
JavaScript

module.exports = {
getTemplateData: function(state, input) {
return {
label: input.label
};
},
emitPressEvent: function() {
this.emit('press', { widget: this });
}
};