Skip to content

Instantly share code, notes, and snippets.

@stephencattaneo
Created December 14, 2016 23:48
Show Gist options
  • Save stephencattaneo/861631b2b00272cae5f6fc5f73575524 to your computer and use it in GitHub Desktop.
Save stephencattaneo/861631b2b00272cae5f6fc5f73575524 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
toggleShouldDisable(){this.set('shouldDisable', ! this.get('shouldDisable'));},
},
});
body {
margin: 12px 16px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 12pt;
}
:disabled {
border: thin solid red;
}
<button {{action 'toggleShouldDisable'}}> toggle</button>
<button
disabled={{if shouldDisable 'disabled' ''}}>am i disabled?</button>
<br>
<br>
{
"version": "0.10.6",
"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.9.0",
"ember-data": "2.9.0",
"ember-template-compiler": "2.9.0",
"ember-testing": "2.9.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment