Has somebody found a good way to animate state transitions?
The router immediately removes the view from the DOM. The problem with that is that I can\'t defer that u
App.SomeView = Ember.View.extend({ didInsertElement: function(){ //called on creation this.$().hide().fadeIn(400); }, willDestroyElement: function(){ //called on destruction this.$().slideDown(250) } });