ui-scroll.js 339 B

123456789101112
  1. angular.module('app')
  2. .directive('uiScroll', ['$location', '$anchorScroll', function($location, $anchorScroll) {
  3. return {
  4. restrict: 'AC',
  5. link: function(scope, el, attr) {
  6. el.on('click', function(e) {
  7. $location.hash(attr.uiScroll);
  8. $anchorScroll();
  9. });
  10. }
  11. };
  12. }]);