I hereby claim:
- I am feanor07 on github.
 - I am feanor07 (https://keybase.io/feanor07) on keybase.
 - I have a public key ASCZBv8C75QUbiyLCV86enEVrq5Flg6b27SeMOVzoEXR_Ao
 
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import Ember from 'ember'; | |
| const { computed } = Ember; | |
| const Foo = Ember.Object.extend({ | |
| init() { | |
| this._super(...arguments) | |
| this.set('amount', { value: 100 }) | |
| }, | |
| amountValue: computed.alias('amount.value') | 
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| tagName: '' | |
| }); | 
| import Ember from 'ember'; | |
| const DURATION = 5000 | |
| export default Ember.Component.extend({ | |
| incrementingValue: 0, | |
| foo: Ember.observer('endVal', function(){ | |
| if (this.timer) { | |
| Ember.run.cancel(this.timer) | |
| } | 
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle', | |
| a: true, | |
| c: false, | |
| b: Ember.computed('c', function() { | |
| console.log('b is calculated nevertheless!') | |
| return this.c | |
| }) | 
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle', | |
| init() { | |
| this.set('parent', this.store.createRecord('parent', {name:'foo'})) | |
| }, | |
| actions: { | 
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle', | |
| init() { | |
| this.set('parent', this.store.createRecord('parent', {name:'foo'})) | |
| }, | |
| actions: { | 
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); | 
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| organization: { | |
| id: 'facebook' | |
| }, | |
| actions: { | |
| favoriteWasClicked() { | |
| const organization = this.get('organization'); | 
| import Days from 'ember-power-calendar/components/power-calendar/days' | |
| export default Days.extend({ | |
| // eliminate monday and sunday from the weekdays already constructed ad power-calendar-days | |
| weekdaysWithoutMondayAndSunday: Ember.computed('weekdays', function() { | |
| return this.get('weekdays').slice(2,7) | |
| }) | |
| }); |