diff --git a/README.md b/README.md index 3f7c66d..03a4412 100644 --- a/README.md +++ b/README.md @@ -50,17 +50,8 @@ Note: The standard HTML5 `canvas.toBlob()` method is not available in all browse [canvas-toBlob.js][5] is a cross-browser `canvas.toBlob()` implementation that solves this. -### Doing something after a file is saved - - var filesaver = saveAs(blob, "secret stuff that you won't send to a server.truecrypt"); - filesaver.onwriteend = function() { - // file saved, do something here - }; - ### Aborting a save -Note that Internet Explorer cannot abort saves, so - var filesaver = saveAs(blob, "whatever"); cancel_button.addEventListener("click", function() { if (filesaver.abort) {