Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / javascripts / ember / routes / vm.js @ 83506b33

History | View | Annotate | Download (303 Bytes)

1
App.VmRoute = Ember.Route.extend({
2

    
3
    redirect: function() {
4
       this.transitionTo('vm.info'); 
5
    },
6

    
7
    renderTemplate: function() {
8
        this.render('vm');
9
        this.render('lt-bar', {
10
          into: 'vm',
11
          outlet: 'lt-bar',
12
          controller: 'vms',
13
        });
14
    }
15

    
16
});