-
Notifications
You must be signed in to change notification settings - Fork 231
Memory leaks #142
Comments
hope to see your jsfiddle demo |
@kenberkeley fiddle here: https://jsfiddle.net/TunaYagci/eywraw8t/272323/ My usual memleak routine:
Normally, when you route back you should see the Difference after Do that Reason why I'm testing this with |
Hi, any progress ? |
no idea😂 |
I fixed some memory leaks, they were caused moustly by unregistered jQuery events. |
|
@Klainer that commit really did something. Here are the results: So if you look at VueComponent, this commit really cleaned up the leaks. 🎉 🎉 But, I don't know why created(){
this.eventBus.$on('content-type-saving', this.listener)
},
beforeDestroy(){
this.eventBus.$off('content-type-saving', this.listener)
} Nice work, really 👍 Just wondering, how did you catch those leaks? |
This component is leaking and it's heavily affecting us in production. I can provide a jsFiddle if you need it.
The text was updated successfully, but these errors were encountered: