cms/app-client/app/router.js
changeset 5 d4b3da0dadc9
child 16 70e9a764d6d7
equal deleted inserted replaced
4:f55970e41793 5:d4b3da0dadc9
       
     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('first-page');
       
    10   this.route('second-page');
       
    11 });
       
    12 
       
    13 export default Router;