123456789101112 |
- angular.module('app')
- .directive('uiScroll', ['$location', '$anchorScroll', function($location, $anchorScroll) {
- return {
- restrict: 'AC',
- link: function(scope, el, attr) {
- el.on('click', function(e) {
- $location.hash(attr.uiScroll);
- $anchorScroll();
- });
- }
- };
- }]);
|