cms/app-client/app/controllers/tabs/chrono.js
author Chloe Laisne <chloe.laisne@gmail.com>
Tue, 21 Jun 2016 14:24:30 +0200
changeset 196 7550cb541901
parent 190 226ae8f2e8e9
child 197 7b266ccf6d3d
permissions -rw-r--r--
Filter as a service Document list as a component Styling and cleanup

import Ember from 'ember';

export default Ember.Controller.extend({

    actions: {
        updateUrl: function(selection){
            this.transitionToRoute({queryParams: {'date': selection}});
        }
    }
});