Commit 7361d352 by Tobias Skarhed

Add comments

parent 4ee4ca99
...@@ -29,10 +29,12 @@ export function pageScrollbar() { ...@@ -29,10 +29,12 @@ export function pageScrollbar() {
scope.$on('$routeChangeSuccess', () => { scope.$on('$routeChangeSuccess', () => {
lastPos = 0; lastPos = 0;
elem[0].scrollTop = 0; elem[0].scrollTop = 0;
// Focus page to enable scrolling by keyboard
elem[0].focus({ preventScroll: true }); elem[0].focus({ preventScroll: true });
}); });
elem[0].tabIndex = -1; elem[0].tabIndex = -1;
// Focus page to enable scrolling by keyboard
elem[0].focus({ preventScroll: true }); elem[0].focus({ preventScroll: true });
}, },
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment