Skip to content

Instantly share code, notes, and snippets.

@chrislopresto
chrislopresto / components.my-component.js
Last active July 18, 2017 02:48 — forked from ykaragol/components.my-component.js
ember-tether remove with isShowing error
import Ember from 'ember';
export default Ember.Component.extend({
isShowing:false,
actions:{
clicked(){
this.toggleProperty('isShowing');
}
}
});