This commit is contained in:
Henry Jameson 2022-07-31 12:35:48 +03:00
commit fddb531ed2
133 changed files with 507 additions and 448 deletions

View file

@ -448,7 +448,7 @@ const Status = {
scrollIfHighlighted (highlightId) {
const id = highlightId
if (this.status.id === id) {
let rect = this.$el.getBoundingClientRect()
const rect = this.$el.getBoundingClientRect()
if (rect.top < 100) {
// Post is above screen, match its top to screen top
window.scrollBy(0, rect.top - 100)
@ -463,7 +463,7 @@ const Status = {
}
},
watch: {
'highlight': function (id) {
highlight: function (id) {
this.scrollIfHighlighted(id)
},
'status.repeat_num': function (num) {
@ -478,7 +478,7 @@ const Status = {
this.$store.dispatch('fetchFavs', this.status.id)
}
},
'isSuspendable': function (val) {
isSuspendable: function (val) {
this.suspendable = val
}
}