Merge pull request #201 from TeemuKoivisto/svg-save

Fix broken saving of svg in Chrome >=60
master
Jeff Schiller 2017-11-27 23:55:33 -08:00 committed by GitHub
commit f290357828
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -1049,8 +1049,13 @@ TODOS
return;
}
// Opens the SVG in new window
var win = wind.open('data:image/svg+xml;base64,' + Utils.encode64(svg));
// Since saving SVGs by opening a new window was removed in Chrome use artificial link-click
// https://stackoverflow.com/questions/45603201/window-is-not-allowed-to-navigate-top-frame-navigations-to-data-urls
var a = document.createElement('a');
a.href = 'data:image/svg+xml;base64,' + Utils.encode64(svg);
a.download = 'icon.svg';
a.click();
// Alert will only appear the first time saved OR the first time the bug is encountered
var done = $.pref('save_notice_done');