cms/app-client/app/router.js
author ymh <ymh.work@gmail.com>
Wed, 02 Mar 2016 13:47:07 +0100
changeset 136 5fed7e1716c2
parent 98 2e6bfce6f99c
child 199 b7c691c6179d
permissions -rw-r--r--
upgrade ember and ember cli

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;