UNPKG

raptor-dev

Version:
21 lines (17 loc) 536 B
define.Class( 'ui-components/buttons/SimpleButton/SimpleButtonWidget', function(require) { return { init: function(widgetConfig) { $(this.getEl()).on('click', function() { alert('Button Clicked!'); }); }, setColor: function(color) { this.getEl().style.backgroundColor = color; }, setLabel: function(label) { this.getEl().innerHTML = label; } }; });