import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
this.route('tabs/detail', { path: '/detail/:document_id' });
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' });
});
Router.reopen({
onUrlChange: function() {
}.observes('currentPath')
});
export default Router;