9 lines
145 B
JavaScript
9 lines
145 B
JavaScript
|
|
export default Ember.Controller.extend({
|
|
actions: {
|
|
someThing: function() {
|
|
console.log('w00t! something happened!');
|
|
}
|
|
}
|
|
});
|