author | Chloe Laisne <chloe.laisne@gmail.com> |
Thu, 07 Jul 2016 11:06:11 +0200 | |
changeset 233 | 0ff47a9c5da2 |
parent 219 | 3578846b66f4 |
child 259 | 6af61adbd570 |
permissions | -rw-r--r-- |
import Ember from 'ember'; import config from './config/environment'; const Router = Ember.Router.extend({ location: config.locationType }); Router.map(function() { this.route('tabs/langues', { path: '/langues' }); this.route('tabs/carto', { path: '/cartographie' }); this.route('tabs/thematiques', { path: '/thematiques' }); this.route('tabs/discours', { path: '/discours' }); this.route('tabs/chrono', { path: '/chronologie' }); }); export default Router;