We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0055d05 commit 592034aCopy full SHA for 592034a
README.md
@@ -71,16 +71,6 @@ The standard W3C File API [`Blob`][3] interface is not available in all browsers
71
Note: The standard HTML5 `canvas.toBlob()` method is not available in all browsers.
72
[canvas-toBlob.js][5] is a cross-browser `canvas.toBlob()` that polyfills this.
73
74
-### Aborting a save
75
-
76
- var filesaver = saveAs(blob, "whatever");
77
- cancel_button.addEventListener("click", function() {
78
- if (filesaver.abort) {
79
- filesaver.abort();
80
- }
81
- }, false);
82
83
-This is only useful when you're saving very large files (e.g. generated video).
84
85

86
0 commit comments