cms/app-client/app/controllers/tabs/thematiques.js
author ymh <ymh.work@gmail.com>
Tue, 19 Jan 2016 19:18:34 +0100
changeset 109 d22ed5792f8e
parent 96 719390899adf
child 176 d1baf7ccecc8
permissions -rw-r--r--
Correct transaction management. cf. bug https://openrdf.atlassian.net/browse/SES-2295 and tomcat default management of PUT request with form data (application/x-www-form-urlencoded encoded)

import Ember from 'ember';

export default Ember.Controller.extend({
  actions: {
    updateUrl: function(selection){
      this.transitionToRoute({queryParams: {thematique: selection}});
    }
  }
});