Fixed actor boolean logic, addressing missing boob, tattoo and piercing info. Removed scroll background, fixed actor photo load event and padding.

This commit is contained in:
DebaucheryLibrarian
2020-12-29 04:20:13 +01:00
parent 0f88ae324e
commit 0f052a0631
4 changed files with 29 additions and 31 deletions

View File

@@ -84,7 +84,7 @@ function mounted() {
this.updateScroll();
}
function beforeDestroy() {
function beforeUnmount() {
this.$refs.content.removeEventListener('scroll', this.updateScroll);
window.removeEventListener('resize', this.updateScroll);
@@ -121,7 +121,7 @@ export default {
},
mounted,
updated,
beforeDestroy,
beforeUnmount,
methods: {
scroll,
loaded,
@@ -133,15 +133,11 @@ export default {
<style lang="scss" scoped>
@import 'theme';
.scroll {
background: var(--profile);
.scroll.expanded {
padding: 0;
&.expanded {
padding: 0;
.scroll {
display: none;
}
.scroll {
display: none;
}
}