Skip to content

Instantly share code, notes, and snippets.

View Corbzilla's full-sized avatar

Jason Corbett Corbzilla

  • Prodigious Aim Solutions
View GitHub Profile
import Ember from 'ember';
import { computed, get } from '@ember/object';
export default Ember.Controller.extend({
isButtonOn: false,
// This toggle will run when the button is pressed, it should toggle the isButtonOn property
// which should trigger the value of text to recompute
// -- begin edit area
toggle () {
},