Sign in
android
/
platform
/
external
/
cherry
/
main
/
.
/
third_party
/
angular
/
docs
/
examples
/
example-example2
/
script.js
blob: a4bb9d01ec3c9196bdbfe0a39d9abbb3cad90b3b [
file
]
function
ScrollCtrl
(
$scope
,
$location
,
$anchorScroll
)
{
$scope
.
gotoBottom
=
function
(){
// set the location.hash to the id of
// the element you wish to scroll to.
$location
.
hash
(
'bottom'
);
// call $anchorScroll()
$anchorScroll
();
};
}