Skip to content

Instantly share code, notes, and snippets.

@gerzhan
Created August 20, 2014 01:15
Show Gist options
  • Save gerzhan/85872a2acf4e42a18f07 to your computer and use it in GitHub Desktop.
Save gerzhan/85872a2acf4e42a18f07 to your computer and use it in GitHub Desktop.
AutoScrool by event
app.run(['$rootScope',function($rootScope) {
$rootScope.$on('$viewContentLoaded', function(e) {
jQuery('html, body').animate({scrollTop: 0}, 200);
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment