Remove unused code

This commit is contained in:
brantje 2016-10-12 20:33:45 +02:00
parent 1a74def8dc
commit 61d27ac1b6
No known key found for this signature in database
GPG key ID: 5FF1D117F918687F

View file

@ -72,7 +72,7 @@
}); });
}, },
dataURItoBlob: function (dataURI, ftype) { dataURItoBlob: function (dataURI, ftype) {
var byteString, mimeString, ab, ia, bb, i; var byteString, ab, ia, bb, i;
// convert base64 to raw binary data held in a string // convert base64 to raw binary data held in a string
// doesn't handle URLEncoded DataURIs - see SO answer #6850276 for code that does this // doesn't handle URLEncoded DataURIs - see SO answer #6850276 for code that does this
byteString = atob(dataURI.split(',')[1]); byteString = atob(dataURI.split(',')[1]);