2017-01-28 14:08:56 -08:00

10 lines
349 B
JavaScript

module.exports = {
handleClick: function(event) {
// Every Widget instance is also an EventEmitter instance.
// We will emit a custom "click" event when a DOM click event
// is triggered
this.emit('click', {
event: event // Pass along the DOM event in case it is helpful to others
});
}
};