Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
cgosec authored Apr 3, 2024
1 parent 158ed97 commit ab5dca3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/static/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -2436,13 +2436,13 @@ function exportCaseJSON(caseName) {
}

function exportPNG() {
var png64 = cy.png({scale: 15});
var png64 = cy.png({scale: 10});
var exptag = document.getElementById('export-png');
exptag.href = png64;
}

function exportJPEG() {
var jpg64 = cy.png({scale: 15});
var jpg64 = cy.png({scale: 10});
var exptag = document.getElementById('export-jpeg');
exptag.href = jpg64;
}
Expand Down

0 comments on commit ab5dca3

Please sign in to comment.