@CKneeland note that currently every time getDom() is called, u make a NEW DvDWrapper element…

you don’t HAVE to do that … you could SAVE wrapper, and return that over and over…

this would make your ui more stable and the underlying code not have to work so hard recreating everything every time…

just check the value of this.wrapper , if null, create one, save this.wrapper= document.createElement(‘div’)

then return this.wrapper