1
0
Fork 0
mirror of https://git.youjo.love/youjo/youjo-fe.git synced 2025-03-07 10:59:58 +01:00
This commit is contained in:
Shpuld Shpuldson 2017-06-07 18:13:24 +03:00
parent f915ae174d
commit dcd7d52eb5
2 changed files with 2 additions and 2 deletions
src/components
conversation
status

View file

@ -14,7 +14,7 @@ const conversation = {
preview: {
x: 0,
y: 0,
status
status: null
}
}
},

View file

@ -104,7 +104,7 @@ const Status = {
replyEnter (id, event) {
if (this.$store.state.config.hoverPreview) {
let rect = event.target.getBoundingClientRect()
this.$emit('preview', Number(id), rect.left + 20, rect.top + 20 + window.pageYOffset);
this.$emit('preview', Number(id), rect.left + 20, rect.top + 20 + window.pageYOffset)
}
},
replyLeave () {