Skip to content

Instantly share code, notes, and snippets.

@rjoydip-zz
Last active August 12, 2018 06:28
Show Gist options
  • Select an option

  • Save rjoydip-zz/8f71fbf462fb5487f3a0f53fc6f4ad72 to your computer and use it in GitHub Desktop.

Select an option

Save rjoydip-zz/8f71fbf462fb5487f3a0f53fc6f4ad72 to your computer and use it in GitHub Desktop.
app.directive('scrollToTop', function() {
return {
restrict: 'EA',
scope: { setFn: '&' },
link: function(scope, elem, attrs, ctrl) {
scope.$on('scroll', function(event) {
elem[0].scrollTop = elem[0].scrollHeight;
})
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment