Skip to content

Instantly share code, notes, and snippets.

@pboksz
Created July 25, 2013 13:46
Show Gist options
  • Save pboksz/6079777 to your computer and use it in GitHub Desktop.
Save pboksz/6079777 to your computer and use it in GitHub Desktop.
angular.module('appp', ['ngResource']).value('$anchorScroll', angular.noop)
# override to $anchorScroll functionality
angular.module('badgerbadger').run [
'$rootScope', '$window', ($rootScope, $window) ->
$rootScope.$on '$routeChangeSuccess', (event, newRoute, oldRoute) ->
if somethingWhereYouKeepScroll
currentScroll = $('body').scrollTop()
$window.scrollTo(0, currentScroll || 0)
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment