- Minor
Hello
I noticed some performance degradation in the docker UI when resizing the window.
I found the piece of code that causes the issue, I'm not sure if this is part of the default UI or if this is from a plugin since it references to Dynamix.
webGui/javascript/dynamix.js
/* readmore.js - v2.0.0, copyright Jed Foster NOT UPDATED */
c(window).on("resize", function(a) {
b.resizeBoxes()
})
I noticed that readmore.js has an update that fixes this. It debounces the resize call so it is not spammed.
Kind Regards