Skip to content

Instantly share code, notes, and snippets.

@rwjblue
Last active July 27, 2017 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rwjblue/de93972c860a27420544392913fc3a26 to your computer and use it in GitHub Desktop.
Save rwjblue/de93972c860a27420544392913fc3a26 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
const { Controller, inject } = Ember;
export default Controller.extend({
display: inject.service(),
actions: {
toggle() {
this.get('display').toggleVisibility();
}
}
});
import Ember from 'ember';
const { Service } = Ember;
export default Service.extend({
isThingVisible: false,
toggleVisibility() {
this.toggleProperty('isThingVisible');
console.log(this.get('isThingVisible'));
},
actions: {
toggleVisibility() {
return this.toggleVisibility(...arguments);
}
}
});
<button {{action "toggle"}}>
Toggle Visibility (controller action)
</button>
<button {{action "toggleVisibility" target=display}}>
Toggle Visibility (service method - element action)
</button>
<button onclick={{action "toggleVisibility" target=display}}>
Toggle Visibility (service method - closure action)
</button>
<p>isThingVisible: {{display.isThingVisible}}</p>
{
"version": "0.12.1",
"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.14.0",
"ember-template-compiler": "2.14.0",
"ember-testing": "2.14.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment