Issue in IE when using Fabric.js

canvas, fabricjs, html, internet-explorer

Solution

Please remove:

 textAlign: 'center'

So your code will be:

var text_bottom = new fabric.Text(text_bottom, {
            originX: 'center',
            left:270,
            top: 490,
            fontFamily:'AsmaaFont',
            fill:"#C0C0C0",
            fontSize: 50
        });

Problem

I used http://fabricjs.com/ library am having this problem I need to fix In Internet Explorer the text I add take place beside the selected area but in Chrome and Firefox wit work probably. IE snapshot. Chrome snapshot. ``` var text_bottom = new fabric.Text(text_bottom, { originX: 'center', left:270, top: 490, fontFamily:'AsmaaFont', fill:"#C0C0C0", fontSize: 50, textAlign: 'center' }); ``` What should I do?

Original source