Skip to content

Commit

Permalink
Merge pull request #398 from jozefmak/patch-1
Browse files Browse the repository at this point in the history
Fix template.html for Icon fonts
  • Loading branch information
utom authored Mar 1, 2018
2 parents cc40781 + b6fdf36 commit 72d98a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@
].join(''),
content = [
'<div class="item">',
'<label data-label="' + _('Content') + '"><textarea id="content" rows="2" readonly="readonly">' + layerData.content + '</textarea></label>',
'<label data-label="' + _('Content') + '"><textarea id="content" rows="2" readonly="readonly" style="font-family: ' + layerData.fontFace + ', sans-serif">' + layerData.content + '</textarea></label>',
'</div>'
].join('');
html.push(this.propertyType('TYPEFACE', [ fontFamily, textColor, fontSize, spacing, content ].join('')));
Expand Down

0 comments on commit 72d98a9

Please sign in to comment.