From 663e6fc97a114a5a6bb6c7f90290f05bc80a1ef6 Mon Sep 17 00:00:00 2001 From: Jordan Austin Date: Fri, 12 Jul 2013 11:18:52 -0700 Subject: [PATCH] Updated browser support table --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1f7f12c..7355295 100644 --- a/README.md +++ b/README.md @@ -9,19 +9,21 @@ FileSaver.js is the solution to saving files on the client side, and is perfect webapps that need to generate files or for saving sensitive information that shouldn't be sent to an external server. +It works by + Supported Browsers ------------------ -| Browser | Support Type | Filenames | Size | Dependancies | +| Browser | Constructs as | Filenames | Size | Dependancies | | ------------- | ------------- | ------------ | ---------- | ------------ | | Firefox 20+ | Blob | Yes | 800MiB/per | None | -| Firefox ≤19 | dataURL | No | | [Blob.js](https://github.com/eligrey/Blob.js) | -| Google Chrome | Blob | Yes | 354MiB/per | None | +| Firefox ≤ 19 | Blob | NO | | [Blob.js](https://github.com/eligrey/Blob.js) | +| Chrome | Blob | Yes | 345MiB/per | None | | IE 10+ | Blob | Yes | 600MiB/per | None | | Opera Next | Blob | Yes | | None | -| Opera ≤15 | datURL | No | | [Blob.js](https://github.com/eligrey/Blob.js) | -| Safari ≤6 | dataURL | No | | [Blob.js](https://github.com/eligrey/Blob.js) | +| Opera < 15 | datURL | NO | | [Blob.js](https://github.com/eligrey/Blob.js) | +| Safari ≤ 6 | dataURL | NO | | [Blob.js](https://github.com/eligrey/Blob.js) | Note: Unlisted versions or browsers will probably work too; however only the ones listed above have been tested. @@ -54,8 +56,7 @@ The standard W3C File API [`Blob`][3] interface is not available in all browsers }); Note: The standard HTML5 `canvas.toBlob()` method is not available in all browsers. -[canvas-toBlob.js][5] is a cross-browser `canvas.toBlob()` implementation that solves -this. +[canvas-toBlob.js][5] is a cross-browser `canvas.toBlob()` that polyfills this. ### Aborting a save