AngularJS page anchors
Trying to get a page scroll to an anchor.
HTML
<ul>
<li><a href="#foo">foo</a></li>
<li><a href="#bar">bar</a></li>
</ul>
<div id="foo">This is foo</div>
<div id="bar">This is bar</div>
CSS
ul,div {
border-left:1px dotted #000;
padding:10px 10px 1000px;
}