mirror of
https://github.com/nolanlawson/pinafore
synced 2025-01-24 10:51:50 +01:00
fix null error in VirtualListFooter.html (#456)
This commit is contained in:
parent
6ad20e72a7
commit
65ac7e22f4
@ -17,8 +17,13 @@
|
||||
export default {
|
||||
oncreate () {
|
||||
requestAnimationFrame(() => {
|
||||
let node = this.refs.node
|
||||
if (!node) {
|
||||
return
|
||||
}
|
||||
|
||||
mark('VirtualListFooter gBCR')
|
||||
let rect = this.refs.node.getBoundingClientRect()
|
||||
let rect = node.getBoundingClientRect()
|
||||
stop('VirtualListFooter gBCR')
|
||||
this.store.setForRealm({footerHeight: rect.height})
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user