angular-vertilize
angular-vertilize copied to clipboard
Why is element.clone() used?
My page is running very slow with vertilize and i can only assume its the element.clone() duplicating loads of inputs. Why do you use this? I've seen the comment but I still don't quite understand why you can't just take the height.
I guess this is also related to #15. I had the same issue and for me the workaround is simply:
var getMyRealHeight = function(){ return element.clientHeight; };