Skip to content

Instantly share code, notes, and snippets.

@chancancode
Created October 4, 2016 17:15
Show Gist options
  • Save chancancode/8d59d36de9671dad0b979d6991ccc95f to your computer and use it in GitHub Desktop.
Save chancancode/8d59d36de9671dad0b979d6991ccc95f to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Component.extend({
isTripleEqual: 'not yet',
didReceiveAttrs({ oldAttrs, newAttrs }) {
if (oldAttrs && oldAttrs.h) {
this.set('isTripleEqual', oldAttrs.h === newAttrs.h);
}
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
num: 10
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{input type="range" value=num}} Num: {{num}}
{{foo-bar h=(hash num=num)}}
<br>
<br>
isTripleEqual: {{isTripleEqual}}
{
"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