mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-25 12:45:17 +00:00
fix: little scroll bug
This commit is contained in:
parent
c2cfa6087c
commit
75b5aaf88d
1 changed files with 2 additions and 1 deletions
|
@ -486,6 +486,7 @@ export default {
|
||||||
|
|
||||||
// Toggle this.showComments to true or false. If it is true, then add the dismiss function to backStack.
|
// Toggle this.showComments to true or false. If it is true, then add the dismiss function to backStack.
|
||||||
toggleComment() {
|
toggleComment() {
|
||||||
|
document.getElementById("content-container").scrollTo(0, 0);
|
||||||
this.showComments = !this.showComments;
|
this.showComments = !this.showComments;
|
||||||
if (this.showComments) {
|
if (this.showComments) {
|
||||||
const dismissComment = new backType(
|
const dismissComment = new backType(
|
||||||
|
@ -508,8 +509,8 @@ export default {
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 2;
|
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
z-index: 2;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
Loading…
Reference in a new issue