Added WP boob filter to actors page.

This commit is contained in:
DebaucheryLibrarian
2021-02-28 03:38:54 +01:00
parent 46a3906bde
commit eca24a7c65
10 changed files with 504 additions and 45 deletions

View File

@@ -28,6 +28,7 @@
<div
ref="content"
class="content"
@scroll="scroll"
>
<router-view @scroll="scrollToTop" />
</div>
@@ -76,6 +77,10 @@ function resize(event) {
this.events.emit('resize', event);
}
function scroll(event) {
this.events.emit('scroll', event);
}
function scrollToTop() {
this.$refs.content.scrollTop = 0;
}
@@ -112,6 +117,7 @@ export default {
setConsent,
blur,
resize,
scroll,
scrollToTop,
},
};