16 lines
185 B
JavaScript
16 lines
185 B
JavaScript
|
//
|
||
|
// path: /
|
||
|
//
|
||
|
// The index is for choosing datacenters.
|
||
|
//
|
||
|
App.IndexController = Ember.Controller.extend({
|
||
|
});
|
||
|
|
||
|
//
|
||
|
// path: /:dc
|
||
|
//
|
||
|
App.DcController = Ember.Controller.extend({
|
||
|
})
|
||
|
|
||
|
|