equal
deleted
inserted
replaced
|
1 import Ember from 'ember'; |
|
2 import config from './config/environment'; |
|
3 |
|
4 var Router = Ember.Router.extend({ |
|
5 location: config.locationType |
|
6 }); |
|
7 |
|
8 Router.map(function() { |
|
9 this.route('doc', { path: '/doc/:doc_id' }); |
|
10 }); |
|
11 |
|
12 export default Router; |