Skip to content

Commit

Permalink
Merge pull request #421 from Kitware/fix-export-svg
Browse files Browse the repository at this point in the history
Fix export of SVG by passing format to serialize
  • Loading branch information
jeffbaumes committed Oct 4, 2016
2 parents f75065d + 8ef2ac8 commit 39a90f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/resonantlab/views/overlays/ExportView/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let ExportView = Backbone.View.extend({
download.click();
window.mainPage.overlay.closeOverlay();
} else {
vis.component.serialize().then(value => {
vis.component.serialize(format).then(value => {
download.setAttribute('href', value);
download.click();
window.mainPage.overlay.closeOverlay();
Expand Down

0 comments on commit 39a90f2

Please sign in to comment.