Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sglanzer-deprecated/43c7ea30376d52b1299f75b5c26953db to your computer and use it in GitHub Desktop.
Save sglanzer-deprecated/43c7ea30376d52b1299f75b5c26953db to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
queryParams: ['activeSorting'],
activeSorting: null,
actions: {
clickHandler() {
let result =[{name: 'q'}, {value: 'a'}]
this.set('activeSorting', result)
}
}
});
import Ember from 'ember';
export default Ember.Route.extend({
model: function (params) {
console.log(params)
},
});
<button {{action (action 'clickHandler')}}>set qp</button>
{
"version": "0.10.5",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.8.0",
"ember-data": "2.8.0",
"ember-template-compiler": "2.8.0",
"ember-testing": "2.8.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment