Skip to content

Instantly share code, notes, and snippets.

View 3AHAT0P's full-sized avatar
:octocat:

3@H@T0P 3AHAT0P

:octocat:
View GitHub Profile
@3AHAT0P
3AHAT0P / components.test-one.js
Created December 10, 2016 16:01 — forked from workmanw/components.test-one.js
Ember 2.10.0 - Bug with inline styles
import Ember from 'ember';
export default Ember.Component.extend({
attributeBindings: 'style'.w(),
init() {
this._super(...arguments);
Ember.run.later(this, () => {
this.set('isVisible', true);
}, 5000);
import Ember from 'ember';
export default Ember.Component.extend({
isVisible: true
});