mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
Bug WISE-22 fixed. Resolve resize node issue.
This commit is contained in:
parent
a2db34ae61
commit
80dfab3ef4
@ -156,16 +156,20 @@ web2d.peer.svg.TextPeer = new Class({
|
|||||||
var computedWidth;
|
var computedWidth;
|
||||||
// Firefox hack for this issue:http://stackoverflow.com/questions/6390065/doing-ajax-updates-in-svg-breaks-getbbox-is-there-a-workaround
|
// Firefox hack for this issue:http://stackoverflow.com/questions/6390065/doing-ajax-updates-in-svg-breaks-getbbox-is-there-a-workaround
|
||||||
try {
|
try {
|
||||||
|
|
||||||
computedWidth = this._native.getBBox().width;
|
computedWidth = this._native.getBBox().width;
|
||||||
// Chrome bug is producing this error, oly during page loading. Remove the hack if it works. The issue seems to be
|
// Chrome bug is producing this error, oly during page loading. Remove the hack if it works. The issue seems to be
|
||||||
// caused when the element is hidden.
|
// caused when the element is hidden. I don't know why, but it works ...
|
||||||
if(computedWidth==0){
|
if(computedWidth==0){
|
||||||
computedWidth = getBoundingClientRect().width - 35;
|
var bbox = this._native.getBBox();
|
||||||
|
computedWidth = bbox.width;
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
computedWidth = 10;
|
computedWidth = 10;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
console.log("Final result:"+computedWidth);
|
||||||
|
|
||||||
var width = parseInt(computedWidth);
|
var width = parseInt(computedWidth);
|
||||||
width = width + this._font.getWidthMargin();
|
width = width + this._font.getWidthMargin();
|
||||||
|
Loading…
Reference in New Issue
Block a user