You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ The simple, easy-to-implement plugin to export HTML tables to xlsx, xls, csv, an
6
6
7
7
### Download and Setup
8
8
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:
10
10
11
11
```html
12
12
<scriptsrc="jquery.js"></script>
@@ -38,7 +38,7 @@ $ npm install tableexport
38
38
#### Required:
39
39
40
40
*[jQuery](https://jquery.com) (1.2.1 or higher) `*`
> `*` jQuery dependency requirement is removed as of [4.0.0-alpha.1](https://github.com/clarketm/TableExport/tree/v4.0.0-alpha.1)
44
44
@@ -47,28 +47,28 @@ $ npm install tableexport
47
47
*[Bootstrap](http://getbootstrap.com/getting-started/#download) (3.1.0 or higher)
48
48
49
49
#### 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).
51
51
52
-
*[xlsx-core.js](https://github.com/SheetJS/js-xlsx) by _SheetJS_
52
+
*[xls.js](https://github.com/clarketm/js-xls) by _clarketm_
53
53
54
54
```html
55
55
<scriptsrc="xlsx-core.js"></script>
56
-
<scriptsrc="filesaver.js"></script>
56
+
<scriptsrc="FileSaver.js"></script>
57
57
...
58
58
<scriptsrc="tableexport.js"></script>
59
59
```
60
60
61
61
#### 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.
63
63
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`.
65
65
66
66
*[Blob.js](https://github.com/clarketm/Blob.js) by _clarketm_
67
67
68
68
```html
69
69
<scriptsrc="xlsx-core.js"></script>
70
70
<scriptsrc="Blob.js"></script>
71
-
<scriptsrc="filesaver.js"></script>
71
+
<scriptsrc="FileSaver.js"></script>
72
72
...
73
73
<scriptsrc="tableexport.js"></script>
74
74
```
@@ -229,5 +229,5 @@ A live, interactive demo can be found **[here](https://www.travismclarke.com/tab
0 commit comments