There is no font attribute on Path#style.

This commit is contained in:
Jürg Lehni 2012-11-05 19:32:39 -08:00
parent 6211bc7ed6
commit 4c93ce546a

View file

@ -147,9 +147,6 @@ var SvgExporter = this.SvgExporter = new function() {
svg = createElement('text');
svg.setAttribute('x', path.getPoint().getX());
svg.setAttribute('y', path.getPoint().getY());
if (path.style.font != undefined) {
svg.setAttribute('font', path.style.font);
}
if (path.characterStyle.font != undefined) {
svg.setAttribute('font-family', path.characterStyle.font);
}