Skip to content
This repository has been archived by the owner on Jul 25, 2021. It is now read-only.

Commit

Permalink
v4.0.0-rc.4
Browse files Browse the repository at this point in the history
  • Loading branch information
clarketm committed May 4, 2017
1 parent 41d618e commit e6aaa88
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 29 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The simple, easy-to-implement plugin to export HTML tables to xlsx, xls, csv, an

[TableExport](https://www.travismclarke.com/tableexport/) demo **--** [TableExport + RequireJS](https://github.com/clarketm/tableexport_requirejs_app) skeleton **--** [TableExport + Flask](https://github.com/clarketm/tableexport_flask_app) skeleton.

## [`v4.0.0-rc.3`](https://github.com/clarketm/TableExport/releases/tag/v4.0.0-rc.3) Release Candidate:
## [`v4.0.0-rc.4`](https://github.com/clarketm/TableExport/releases/tag/v4.0.0-rc.4) Release Candidate:
> **Notice:** In May 2017, [v3.0.0](https://github.com/clarketm/TableExport/releases/tag/v3.3.9) will be superceded by [v4.0.0](https://github.com/clarketm/TableExport/releases/tag/v4.0.0-alpha.5). Althought this is a major version bump, fear not, because all changes will be 100% backwards-compatible.
> **So why the major version bump you ask?** Well, the rationale for a major version bump is that due to a change in `TableExport`'s dependencies, in [v4.0.0](https://github.com/clarketm/TableExport/releases/tag/v4.0.0-alpha.5) forth, JQuery will no longer be a **required** dependency, instead it will be purely **optional**. So existing implementations *with* jQuery will continue to work unimpeded, now with the added benefit that new projets no longer need to rely on the overhead of such large library, unless of course you prefer jQuery or it is already part of your project.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tableexport.js",
"version": "4.0.0-rc.3",
"version": "4.0.0-rc.4",
"authors": [
"clarketm <[email protected]>"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/css/tableexport.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* TableExport.js 4.0.0-rc.3 (https://www.travismclarke.com)
* TableExport.js 4.0.0-rc.4 (https://www.travismclarke.com)
* Copyright 2017 Travis Clarke
* Licensed under the MIT license
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/css/tableexport.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 5 additions & 9 deletions dist/js/tableexport.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* TableExport.js 4.0.0-rc.3 (https://www.travismclarke.com)
* TableExport.js 4.0.0-rc.4 (https://www.travismclarke.com)
* Copyright 2017 Travis Clarke
* Licensed under the MIT license
*/
Expand Down Expand Up @@ -113,7 +113,7 @@
* Version.
* @memberof TableExport.prototype
*/
version: '4.0.0-rc.3',
version: '4.0.0-rc.4',
/**
* Default plugin options.
* @memberof TableExport.prototype
Expand Down Expand Up @@ -409,14 +409,10 @@
if (_hasClass(val, settings.emptyCSS)) {
return ' '
}
return {
v: settings.formatValue(val.textContent),
t: self.getType(val.className)
};

return val.textContent;
}).join(colD);
}).join(self).map(function (val) {
return [].concat.apply([], val);
}),
}).join(self.rowDel),
dataObject = TableExport.prototype.escapeHtml(
JSON.stringify({
data: dataURL,
Expand Down
4 changes: 2 additions & 2 deletions dist/js/tableexport.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tableexport",
"version": "4.0.0-rc.3",
"version": "4.0.0-rc.4",
"authors": [
"clarketm <[email protected]>"
],
Expand Down
2 changes: 1 addition & 1 deletion src/stable/css/tableexport.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* TableExport.js 4.0.0-rc.3 (https://www.travismclarke.com)
* TableExport.js 4.0.0-rc.4 (https://www.travismclarke.com)
* Copyright 2017 Travis Clarke
* Licensed under the MIT license
*/
Expand Down
2 changes: 1 addition & 1 deletion src/stable/css/tableexport.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 5 additions & 9 deletions src/stable/js/tableexport.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* TableExport.js 4.0.0-rc.3 (https://www.travismclarke.com)
* TableExport.js 4.0.0-rc.4 (https://www.travismclarke.com)
* Copyright 2017 Travis Clarke
* Licensed under the MIT license
*/
Expand Down Expand Up @@ -113,7 +113,7 @@
* Version.
* @memberof TableExport.prototype
*/
version: '4.0.0-rc.3',
version: '4.0.0-rc.4',
/**
* Default plugin options.
* @memberof TableExport.prototype
Expand Down Expand Up @@ -409,14 +409,10 @@
if (_hasClass(val, settings.emptyCSS)) {
return ' '
}
return {
v: settings.formatValue(val.textContent),
t: self.getType(val.className)
};

return val.textContent;
}).join(colD);
}).join(self).map(function (val) {
return [].concat.apply([], val);
}),
}).join(self.rowDel),
dataObject = TableExport.prototype.escapeHtml(
JSON.stringify({
data: dataURL,
Expand Down
4 changes: 2 additions & 2 deletions src/stable/js/tableexport.min.js

Large diffs are not rendered by default.

0 comments on commit e6aaa88

Please sign in to comment.