--- a/server/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/README.md Fri Apr 24 13:12:33 2015 +0200
+++ b/server/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/README.md Fri Apr 24 13:13:24 2015 +0200
@@ -10,7 +10,7 @@
sent to an external server.
Looking for `canvas.toBlob()` for saving canvases? Check out
-[canvas-toBlob.js][2] for a cross-browser implementation.
+[canvas-toBlob.js](https://github.com/eligrey/canvas-toBlob.js) for a cross-browser implementation.
Supported browsers
------------------
@@ -19,10 +19,10 @@
| -------------- | ------------- | ------------ | ------------- | ------------ |
| Firefox 20+ | Blob | Yes | 800 MiB | None |
| Firefox < 20 | data: URI | No | n/a | [Blob.js](https://github.com/eligrey/Blob.js) |
-| Chrome | Blob | Yes | [500 MiB][3] | None |
-| Chrome for Android | Blob | Yes | [500 MiB][3] | None |
+| Chrome | Blob | Yes | 345 MiB | None |
+| Chrome for Android | Blob | Yes | 345 MiB | None |
| IE 10+ | Blob | Yes | 600 MiB | None |
-| Opera 15+ | Blob | Yes | 500 MiB | None |
+| Opera 15+ | Blob | Yes | 345 MiB | None |
| Opera < 15 | data: URI | No | n/a | [Blob.js](https://github.com/eligrey/Blob.js) |
| Safari 6.1+* | Blob | No | ? | None |
| Safari < 6 | data: URI | No | n/a | [Blob.js](https://github.com/eligrey/Blob.js) |
@@ -66,8 +66,8 @@
saveAs(blob, "hello world.txt");
```
-The standard W3C File API [`Blob`][4] interface is not available in all browsers.
-[Blob.js][5] is a cross-browser `Blob` implementation that solves this.
+The standard W3C File API [`Blob`][3] interface is not available in all browsers.
+[Blob.js][4] is a cross-browser `Blob` implementation that solves this.
### Saving a canvas
@@ -80,17 +80,15 @@
```
Note: The standard HTML5 `canvas.toBlob()` method is not available in all browsers.
-[canvas-toBlob.js][6] is a cross-browser `canvas.toBlob()` that polyfills this.
+[canvas-toBlob.js][5] is a cross-browser `canvas.toBlob()` that polyfills this.

[1]: http://eligrey.com/demos/FileSaver.js/
- [2]: https://github.com/eligrey/canvas-toBlob.js
- [3]: https://code.google.com/p/chromium/codesearch#chromium/src/storage/browser/blob/blob_storage_context.cc&type=cs&sq=package:chromium&l=37&rcl=1418672972
- [4]: https://developer.mozilla.org/en-US/docs/DOM/Blob
- [5]: https://github.com/eligrey/Blob.js
- [6]: https://github.com/eligrey/canvas-toBlob.js
+ [3]: https://developer.mozilla.org/en-US/docs/DOM/Blob
+ [4]: https://github.com/eligrey/Blob.js
+ [5]: https://github.com/eligrey/canvas-toBlob.js
Contributing
------------