changeset 190 | 226ae8f2e8e9 |
parent 189 | 21b30ee23191 |
child 197 | 7b266ccf6d3d |
189:21b30ee23191 | 190:226ae8f2e8e9 |
---|---|
1 import Ember from 'ember'; |
1 import Ember from 'ember'; |
2 |
2 |
3 export default Ember.Controller.extend({ |
3 export default Ember.Controller.extend({ |
4 |
4 |
5 actions: { |
5 actions: { |
6 updateUrl: function(selection){ |
6 updateUrl: function(selection){ |
7 this.transitionToRoute({queryParams: {date: selection}}); |
7 this.transitionToRoute({queryParams: {'date': selection}}); |
8 } |
|
8 } |
9 } |
9 } |
|
10 }); |
10 }); |