Skip to content

Instantly share code, notes, and snippets.

View simonihmig's full-sized avatar

Simon Ihmig simonihmig

View GitHub Profile
@simonihmig
simonihmig / components.my-component.js
Created May 19, 2017 18:23
scroll-listener-test-failing
import Ember from 'ember';
const { computed } = Ember;
export default Ember.Component.extend({
classNames: ['my-component'],
classNameBindings: ['show'],
show: computed({
get() {
import Ember from 'ember';
export default Ember.Component.extend({
tagName: ''
});
@simonihmig
simonihmig / components.my-component.js
Last active November 27, 2016 00:46 — forked from GavinJoyce/components.my-component.js
yielding values in partials throws in canary
import Ember from 'ember';
export default Ember.Component.extend({
someProperty: 'Success'
});