Skip to content

Commit a68aae0

Browse files
authored
Update README.md
1 parent c2b3374 commit a68aae0

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The simple, easy-to-implement plugin to export HTML tables to xlsx, xls, csv, an
66

77
### Download and Setup
88

9-
To use this plugin, include the [jQuery](https://jquery.com) library, [FileSaver.js](https://github.com/eligrey/FileSaver.js/) script, and [TableExport.js](https://www.travismclarke.com/tableexport) plugin before the closing `<body>` tag of your HTML document:
9+
To use this plugin, include the [jQuery](https://jquery.com) library, [FileSaver.js](https://github.com/clarketm/FileSaver.js/) script, and [TableExport.js](https://www.travismclarke.com/tableexport) plugin before the closing `<body>` tag of your HTML document:
1010

1111
```html
1212
<script src="jquery.js"></script>
@@ -38,7 +38,7 @@ $ npm install tableexport
3838
#### Required:
3939

4040
* [jQuery](https://jquery.com) (1.2.1 or higher) `*`
41-
* [FileSaver.js](https://github.com/eligrey/FileSaver.js/)
41+
* [FileSaver.js](https://github.com/clarketm/FileSaver.js/)
4242

4343
> `*` jQuery dependency requirement is removed as of [4.0.0-alpha.1](https://github.com/clarketm/TableExport/tree/v4.0.0-alpha.1)
4444
@@ -47,28 +47,28 @@ $ npm install tableexport
4747
* [Bootstrap](http://getbootstrap.com/getting-started/#download) (3.1.0 or higher)
4848

4949
#### Add-Ons:
50-
In order to provide **Office Open XML SpreadsheetML Format ( .xlsx )** support, you must include the following third-party script to your project before [FileSaver.js](https://github.com/eligrey/FileSaver.js/) and [TableExport.js](https://www.travismclarke.com/tableexport).
50+
In order to provide **Office Open XML SpreadsheetML Format ( .xlsx )** support, you must include the following third-party script to your project before [FileSaver.js](https://github.com/clarketm/FileSaver.js/) and [TableExport.js](https://www.travismclarke.com/tableexport).
5151

52-
* [xlsx-core.js](https://github.com/SheetJS/js-xlsx) by _SheetJS_
52+
* [xls.js](https://github.com/clarketm/js-xls) by _clarketm_
5353

5454
```html
5555
<script src="xlsx-core.js"></script>
56-
<script src="filesaver.js"></script>
56+
<script src="FileSaver.js"></script>
5757
...
5858
<script src="tableexport.js"></script>
5959
```
6060

6161
#### Older Browsers:
62-
To support older browsers ( **Chrome** < 20, **Firefox** < 13, **Opera** < 12.10, **IE** < 10, __Safari__ < 6 ) include the [Blob.js](https://github.com/clarketm/Blob.js/) polyfill before the [FileSaver.js](https://github.com/eligrey/FileSaver.js/) script.
62+
To support older browsers ( **Chrome** < 20, **Firefox** < 13, **Opera** < 12.10, **IE** < 10, __Safari__ < 6 ) include the [Blob.js](https://github.com/clarketm/Blob.js/) polyfill before the [FileSaver.js](https://github.com/clarketm/FileSaver.js/) script.
6363

64-
Until [Safari](https://github.com/eligrey/FileSaver.js/issues/242) provides native support for either the [HTML5 download attribute](http://caniuse.com/#feat=download) or [service workers](http://caniuse.com/#search=service%20workers), limited `xlx` and `xlsx` support is provided by including the [Blob.js](https://github.com/clarketm/Blob.js/) polyfill, albeit the **filename** will always be labeled `Unknown`.
64+
Until [Safari](https://github.com/clarketm/FileSaver.js/issues/242) provides native support for either the [HTML5 download attribute](http://caniuse.com/#feat=download) or [service workers](http://caniuse.com/#search=service%20workers), limited `xlx` and `xlsx` support is provided by including the [Blob.js](https://github.com/clarketm/Blob.js/) polyfill, albeit the **filename** will always be labeled `Unknown`.
6565

6666
* [Blob.js](https://github.com/clarketm/Blob.js) by _clarketm_
6767

6868
```html
6969
<script src="xlsx-core.js"></script>
7070
<script src="Blob.js"></script>
71-
<script src="filesaver.js"></script>
71+
<script src="FileSaver.js"></script>
7272
...
7373
<script src="tableexport.js"></script>
7474
```
@@ -229,5 +229,5 @@ A live, interactive demo can be found **[here](https://www.travismclarke.com/tab
229229
### Credits
230230

231231
* [John Resig](https://github.com/jeresig) - jQuery
232-
* [SheetJS](https://github.com/SheetJS) - js-xlsx
232+
* [SheetJS](https://github.com/SheetJS) - js-xls
233233
* [Eli Grey](https://github.com/eligrey) - FileSaver.js & Blob.js

0 commit comments

Comments
 (0)