Open GoogleCodeExporter opened 8 years ago
I had this same issue in IE9. My version of the infobubble.js had a mistake in
the styles that were set for the tabs. My infobubble.js had these values set
for the styles:
var styles = {
'cssFloat': 'left',
'position': 'relative',
'cursor': 'pointer',
'backgroundColor': backgroundColor,
'border': this.px(borderWidth) + ' solid ' + borderColor,
'padding': this.px(padding / 2) + ' ' + this.px(padding),
'marginRight': marginRight,
'whiteSpace': 'nowrap',
'borderRadiusTopLeft': borderRadiusPx,
'MozBorderRadiusTopleft': borderRadiusPx,
'webkitBorderTopLeftRadius': borderRadiusPx,
'borderRadiusTopRight': borderRadiusPx,
'MozBorderRadiusTopright': borderRadiusPx,
'webkitBorderTopRightRadius': borderRadiusPx,
'zIndex': index,
'display': 'inline'
};
If you look at the first style it is cssFloat but it should be just float.
CssFloat is not a valid style property. That fixed the issue for me.
Original comment by raheemal...@gmail.com
on 12 Mar 2013 at 2:09
Original issue reported on code.google.com by
boywu...@gmail.com
on 10 Aug 2012 at 3:08