Skip to content

Instantly share code, notes, and snippets.

@dy
Created March 18, 2017 21:37
Show Gist options
  • Save dy/7a74505cca5e5ecbebf9c1f0bdcac847 to your computer and use it in GitHub Desktop.
Save dy/7a74505cca5e5ecbebf9c1f0bdcac847 to your computer and use it in GitHub Desktop.
Open data-uri in new window
function saveAs(arrayBuffer, fileName, mime) {
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;
window.requestFileSystem(window.TEMPORARY, arrayBuffer.byteLength, function(fs) {
fs.root.getFile(fileName, {create: true}, function(fileEntry) {
fileEntry.createWriter(function(writer) {
var dataView = new DataView(arrayBuffer);
var blob = new Blob([dataView], {type: 'font/opentype'});
writer.write(blob);
writer.addEventListener('writeend', function() {
// Navigating to the file will download it.
location.href = fileEntry.toURL();
}, false);
});
});
},
function(err) {
throw new Error(err.name + ': ' + err.message);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment