From 4c93ce546acfcc0b90501c8f46d5b74fb66d0ab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 5 Nov 2012 19:32:39 -0800 Subject: [PATCH] There is no font attribute on Path#style. --- src/svg/SvgExporter.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/svg/SvgExporter.js b/src/svg/SvgExporter.js index c20c3f50..16c86236 100644 --- a/src/svg/SvgExporter.js +++ b/src/svg/SvgExporter.js @@ -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); }