2017-02-07 16:03:00 +11:00

9 lines
145 B
JavaScript

export default Ember.Controller.extend({
actions: {
someThing: function() {
console.log('w00t! something happened!');
}
}
});