fetch text height only after mask has been loaded

remove-mods-files
Henry Jameson 2 years ago
parent 420f29b6a4
commit 6e1639cc1e

@ -60,9 +60,14 @@ const UpdateNotification = {
}
},
mounted () {
// Workaround to get the text height only after mask loaded. A bit hacky.
const newImg = new Image()
newImg.onload = () => {
setTimeout(() => {
this.contentHeight = this.$refs.animatedText.scrollHeight
}, 1000)
}, 100)
}
newImg.src = this.pleromaTanVariant === pleromaTan ? pleromaTanMask : pleromaTanFoxMask
}
}

Loading…
Cancel
Save