KineticJS
KineticJS copied to clipboard
Font weight (bold) IE bug
I found Bug in kinetic.

Result is:

so... _getContextFont = bold normal 255px Helvetica
bold is rewrited by normal, in result font is normal, not bold :(
My temporary resolve:
_getContextFont: function() {
var fontVariant = this.getFontVariant().replace("normal", "");
return this.getFontStyle() + SPACE + fontVariant + SPACE + this.getFontSize() + PX_SPACE + this.getFontFamily();
},<
I can confirm this. No version of IE works.