tweak timeline fade effect

This commit is contained in:
Nolan Lawson 2018-01-21 14:39:11 -08:00
parent 75d78d44a2
commit 6183a9787a
1 changed files with 6 additions and 6 deletions

View File

@ -29,14 +29,14 @@
export default {
async oncreate() {
let instanceName = this.store.get('currentInstance')
let instanceData = this.store.get('currentInstanceData')
let online = this.get('online')
let timeline = this.get('timeline')
let statuses = await this.fetchStatusesAndPossiblyFallBack()
this.addStatuses(statuses)
this.set({initialized: true})
this.fire('initialized')
requestAnimationFrame(() => {
requestAnimationFrame((() => {
this.set({initialized: true})
this.fire('initialized')
}))
})
},
data: () => ({
StatusListItem: StatusListItem,