Resolves Issue #901 -- fix client math for height of text node

This commit is contained in:
Peter Cottle 2021-11-28 19:40:36 +00:00
parent 01797c1e4d
commit 20f834c08e

View file

@ -316,7 +316,7 @@ var VisBranch = VisBase.extend({
return firefoxFix({
w: maxWidth,
h: textNode.clientHeight
h: textNode.getBoundingClientRect().height,
});
},