8 lines
140 B
JavaScript

Demo.DemoController = Ember.ObjectController.extend({
actions: {
close: function() {
this.transitionTo('index');
},
}
});