From 499958f2a87f2d7d531e78d9d99a8ee535e64cd8 Mon Sep 17 00:00:00 2001 From: Abhas Date: Mon, 24 Apr 2017 16:11:34 +0530 Subject: [PATCH] Dont remove image from svg automatically --- fusioncharts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fusioncharts.js b/fusioncharts.js index 4906c15..48ed8f3 100644 --- a/fusioncharts.js +++ b/fusioncharts.js @@ -39555,7 +39555,7 @@ FusionCharts.register('module', ['private', 'modules.exporter.main', // If the hosted environment supports canvas get SVG with image tags // else trim all embedded image specific tags. // @todo: Need to figure out how images could be exported for older browsers. - svg = paper.toSVG(exportwithimages && isCanvasSupported && exportFormat !== 'svg'); + svg = paper.toSVG(exportwithimages && isCanvasSupported); svgForClientSideExport = paper.toSVG(exportwithimages && isCanvasSupported); svgForClientSideExport = removeCrossDomainImages(svgForClientSideExport);