Skip to content

Commit 80a6273

Browse files
committed
directory restructure
1 parent c61cfcf commit 80a6273

11 files changed

Lines changed: 6 additions & 6 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To use this plugin, include the [jQuery](https://jquery.com) library and the [Ta
99

1010
```html
1111
<script src="jquery.js"></script>
12-
<script src="jquery.tableexport.js"></script>
12+
<script src="tableexport.js"></script>
1313
```
1414

1515
### Install with Bower
@@ -40,7 +40,7 @@ In order to provide **Office Open XML SpreadsheetML Format ( .xlsx )** support,
4040
<script src="filesaver.js"></script>
4141
<script src="blob.js"></script>
4242
...
43-
<script src="jquery.tableexport.js"></script>
43+
<script src="tableexport.js"></script>
4444
```
4545

4646
## Usage

dist/js/versions/stable/jquery.tableexport.js renamed to dist/js/tableexport.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
// Define the plugin default properties.
122122
$.fn.tableExport.defaults = {
123123
headings: true, // (Boolean), display table headings (th elements) in the first row, (default: true)
124-
formats: ["xlsx", "xls", "csv", "txt"], // (String[]), filetype for the export, (default: ["xlsx", "xls", "csv", "txt"])
124+
formats: ["xls", "csv", "txt"], // (String[]), filetype for the export, (default: ["xls", "csv", "txt"])
125125
fileName: "id", // (id, String), filename for the downloaded file, (default: "id")
126126
bootstrap: true, // (Boolean), style buttons using bootstrap, (default: true)
127127
position: "bottom" // (top, bottom), position of the caption element relative to table, (default: "bottom")

dist/js/tableexport.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/versions/stable/jquery.tableexport.min.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/js/versions/v2/jquery.tableexport-2.0.min.js

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

dist/js/versions/v2/jquery.tableexport-2.0.js renamed to src/v2/tableexport-2.0.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
// Define the plugin default properties.
122122
$.fn.tableExport.defaults = {
123123
headings: true, // (Boolean), display table headings (th elements) in the first row, (default: true)
124-
formats: ["xlsx", "xls", "csv", "txt"], // (String[]), filetype for the export, (default: ["xlsx", "xls", "csv", "txt"])
124+
formats: ["xls", "csv", "txt"], // (String[]), filetype for the export, (default: ["xlsx", "xls", "csv", "txt"])
125125
fileName: "id", // (id, String), filename for the downloaded file, (default: "id")
126126
bootstrap: true, // (Boolean), style buttons using bootstrap, (default: true)
127127
position: "bottom" // (top, bottom), position of the caption element relative to table, (default: "bottom")

0 commit comments

Comments
 (0)