From 1b1ad906d563a035ae7b2cd72f5af6c07eb31b57 Mon Sep 17 00:00:00 2001 From: Eli Grey Date: Wed, 23 Jan 2013 20:56:01 -0500 Subject: [PATCH] Removed writeend documentation --- README.md | 9 --------- 1 file changed, 9 deletions(-) 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) {