cms/app-client/app/controllers/tabs/thematiques.js
author ymh <ymh.work@gmail.com>
Fri, 08 Apr 2016 19:30:17 +0200
changeset 149 3ace15523e6b
parent 96 719390899adf
child 176 d1baf7ccecc8
permissions -rw-r--r--
ember css in pods still does not work for us (funnel error in emble cli)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
96
719390899adf add action helper on "thematique" click or input enter to set the "thematique" parameter
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     1
import Ember from 'ember';
719390899adf add action helper on "thematique" click or input enter to set the "thematique" parameter
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     2
719390899adf add action helper on "thematique" click or input enter to set the "thematique" parameter
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     3
export default Ember.Controller.extend({
719390899adf add action helper on "thematique" click or input enter to set the "thematique" parameter
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     4
  actions: {
719390899adf add action helper on "thematique" click or input enter to set the "thematique" parameter
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     5
    updateUrl: function(selection){
719390899adf add action helper on "thematique" click or input enter to set the "thematique" parameter
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     6
      this.transitionToRoute({queryParams: {thematique: selection}});
719390899adf add action helper on "thematique" click or input enter to set the "thematique" parameter
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     7
    }
719390899adf add action helper on "thematique" click or input enter to set the "thematique" parameter
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     8
  }
719390899adf add action helper on "thematique" click or input enter to set the "thematique" parameter
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     9
});