Skip to content

Instantly share code, notes, and snippets.

@ErikCH
Created October 2, 2015 02:29
Show Gist options
  • Save ErikCH/0d35aa09d6108465c74d to your computer and use it in GitHub Desktop.
Save ErikCH/0d35aa09d6108465c74d to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
isHomeworkDone: 'true',
isChoresDone: 'true',
actions: {
pressed: function(){
this.toggleProperty('isHomeworkDone');
},
pressed2: function(){
this.toggleProperty('isChoresDone');
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<button {{action 'pressed'}}>HW</button>
<button {{action 'pressed2'}}>Chores</button>
<!--
{{if isHomeworkDone (if isChoresDone "Thanks for finishing the homework!" )}}
-->
<br>
{{isHomeworkDone}}<br>
{{#unless isHomeworkDone}}
Please finish the homework
{{else}}
Thanks for finishing the homework!
{{/unless}}
<br>
<br>
{
"version": "0.4.11",
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.9/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/1.13.11/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.9/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment