Skip to content

Instantly share code, notes, and snippets.

@cspanring
Last active January 20, 2017 20:26
Show Gist options
  • Save cspanring/0bd5938cdb334f19ea6067aaf349ef4d to your computer and use it in GitHub Desktop.
Save cspanring/0bd5938cdb334f19ea6067aaf349ef4d to your computer and use it in GitHub Desktop.
truth helpers cp
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
truthArray: ['truth'],
truth: null,
showTruth: Ember.computed.bool('truth')
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{#if (and showTruth truthArray)}}
showing truth
{{/if}}
{{outlet}}
<br>
<br>
{
"version": "0.11.0",
"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.10.2",
"ember-data": "2.11.0",
"ember-template-compiler": "2.10.2",
"ember-testing": "2.10.2"
},
"addons": {
"ember-truth-helpers": "1.2.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment