cms/app-client/app/controllers/tabs/chrono.js
author Chloe Laisne <chloe.laisne@gmail.com>
Mon, 20 Jun 2016 17:04:59 +0200
changeset 195 9d083636bd99
parent 190 226ae8f2e8e9
child 197 7b266ccf6d3d
permissions -rw-r--r--
Layout and style of the /chronologie endpoint

import Ember from 'ember';

export default Ember.Controller.extend({

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