Skip to content

Instantly share code, notes, and snippets.

@landongn
Created August 27, 2013 17:58
Show Gist options
  • Save landongn/6356842 to your computer and use it in GitHub Desktop.
Save landongn/6356842 to your computer and use it in GitHub Desktop.
testRoute
.HomeRoute = Ember.Route.extend({
model: function () {
return App.RootLevelAdapter.find();
},
didTransition: function () {
console.log('didtransition called');
$("#container").removeClass('intro');
$(".sidebar").removeClass('collapsed');
$("#copy").removeClass('collapsed');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment