Added IE10 support to readme

This commit is contained in:
Eli Grey
2012-12-11 10:13:02 -05:00
parent 2d3872179e
commit 2ec83d8ea3
+8 -5
View File
@@ -12,16 +12,15 @@ sent to an external server.
Supported Browsers Supported Browsers
------------------ ------------------
* Internet Explorer 10+
* Firefox 4+ * Firefox 4+
* Google Chrome * Google Chrome
* Opera 11+ * Opera 11+
* Safari 5+ * Safari 5+
Unlisted versions of browsers (e.g. Firefox 3.6) will probably work too; I just haven't Unlisted versions of browsers (e.g. Firefox 3.6) will probably work too; I just haven't
tested them. tested them.
† Google Chrome 14+ supports saving with filenames
Syntax Syntax
------ ------
@@ -60,9 +59,13 @@ this.
### Aborting a save ### Aborting a save
Note that Internet Explorer cannot abort saves, so
var filesaver = saveAs(blob, "whatever"); var filesaver = saveAs(blob, "whatever");
cancel_button.addEventListener("click", function() { cancel_button.addEventListener("click", function() {
filesaver.abort(); if (filesaver.abort) {
filesaver.abort();
}
}, false); }, false);
This isn't that useful unless you're saving very large files (e.g. generated video). This isn't that useful unless you're saving very large files (e.g. generated video).