Skip to content

Instantly share code, notes, and snippets.

View vcipriani's full-sized avatar

Vince Cipriani vcipriani

  • Alarm.com
  • United States
View GitHub Profile
@vcipriani
vcipriani / controllers.application.js
Last active October 19, 2018 17:30
Define Property
import Ember from 'ember';
import { defineProperty } from '@ember/object';
export default Ember.Controller.extend({
init() {
setTimeout(() => {
// This line works and is deprecated
this.set('delayedProperty', Ember.computed(() => 'foo'));
// Using defineProperty() does not trigger any computed properties that are watching the property (eg. textToShow)