Skip to content
Snippets Groups Projects

Add scroll to top when switching activities (#37)

1 unresolved thread
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
@@ -350,9 +350,13 @@ export class AppShell extends ScopedElementsMixin(LitElement) {
@@ -350,9 +350,13 @@ export class AppShell extends ScopedElementsMixin(LitElement) {
}
}
let updateFunc = () => {
let updateFunc = () => {
 
if (window.pageYOffset !== 0) {
 
window.scrollTo(0, 96);
 
}
this.updatePageTitle();
this.updatePageTitle();
this.subtitle = this.activeMetaDataText("short_name");
this.subtitle = this.activeMetaDataText("short_name");
this.description = this.activeMetaDataText("description");
this.description = this.activeMetaDataText("description");
 
};
};
// If it is empty assume the element is already registered through other means
// If it is empty assume the element is already registered through other means
@@ -640,6 +644,8 @@ export class AppShell extends ScopedElementsMixin(LitElement) {
@@ -640,6 +644,8 @@ export class AppShell extends ScopedElementsMixin(LitElement) {
ul.menu.hidden {
ul.menu.hidden {
display: none;
display: none;
}
}
 
 
}
}
`;
`;
}
}
Loading