ember-animate icon indicating copy to clipboard operation
ember-animate copied to clipboard

Animations for Ember.js

Results 11 ember-animate issues
Sort by recently updated
recently updated
newest added

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

![screen shot 2016-04-11 at 12 12 48 pm](https://cloud.githubusercontent.com/assets/9805776/14435724/e11bf4fc-ffde-11e5-9b52-ec55cc41a412.png)

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...