SIGN IN SIGN UP
angular / angular.js UNCLAIMED

AngularJS - HTML enhanced for web apps!

0 0 0 JavaScript
'use strict';
angular.
module('test', []).
controller('TestController', function($anchorScroll, $location, $scope) {
$scope.scrollTo = function(target) {
// Set `$location.hash()` to `target` and
// `$anchorScroll` will detect the change and scroll
$location.hash(target);
};
});