Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 27b7fa3

Browse files
docs(directives): ensure that the back-to-top directive resets location
Closes #6512 Closes #6499
1 parent d7ecab7 commit 27b7fa3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/app/src/directives.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ angular.module('directives', [])
1010
*
1111
* @description Ensure that the browser scrolls when the anchor is clicked
1212
*/
13-
.directive('backToTop', ['$anchorScroll', function($anchorScroll) {
13+
.directive('backToTop', ['$anchorScroll', '$location', function($anchorScroll, $location) {
1414
return function link(scope, element) {
1515
element.on('click', function(event) {
16+
$location.hash('');
1617
scope.$apply($anchorScroll);
1718
});
1819
};

docs/config/templates/indexPage.template.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ <h4 class="search-results-group-heading">{{ key }}</h4>
226226

227227
<footer class="footer">
228228
<div class="container">
229-
<p class="pull-right"><a back-to-top href="#">Back to top</a></p>
229+
<p class="pull-right"><a back-to-top>Back to top</a></p>
230230

231231
<p>
232232
Super-powered by Google ©2010-2014

0 commit comments

Comments
 (0)