ember-animate
ember-animate copied to clipboard
Animations for Ember.js
GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1

I get the following error when trying to install via Ember addon: ``` $ ember install:addon ember-animate version: 0.2.4 A new version of ember-cli is available (0.2.7). To install it,...
Getting this error in the console on page load: ``` Uncaught Error: Assertion Failed: You cannot access this.$() on a component with `tagName: ''` specified. ``` It's coming from the...
Rather than reopening `Ember.View`, extend so that it can be used however someone may want to use it rather than universal by default. Initial reason for change was because this...
consider a subclass, or flag. We likely shouldn't subject every view to this extra functionality and weight.
While calling `this.destroy()` on an `Ember.Component` it looks like the `isDestroyed` property remains `false` even after the `willAnimateOut`, `animateOut`, & `didAnimateOut` sequence has fired.
I started using ember-animate in an ember-rails project and I've noticed the frustrating: ``` Assertion failed: You have turned on testing mode, which disabled the run-loop's autorun. You will need...
I currently have a component, let's call it `some-component`. I also have a template with logic similar to this: ``` {{#if somethingIsTrue}} {{some-component someStuff=...}} {{else}} ... {{/if}} ``` I have...
First off... Awesome work on this library! I was able to get it up and running with nested views. Everything is working great so far, especially considering that I have...