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

Commit

Permalink
code cleanup, logging removal, and copyright/license updates
Browse files Browse the repository at this point in the history
  • Loading branch information
clarketm committed May 13, 2016
1 parent 6058eee commit 8781499
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 24 deletions.
5 changes: 2 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tableexport.js",
"version": "3.2.3",
"version": "3.2.4",
"authors": [
"clarketm <[email protected]>"
],
Expand All @@ -9,8 +9,7 @@
"keywords": [
"table",
"export",
"table",
"export",
"tableexport",
"Excel",
"xlsx",
"xls",
Expand Down
4 changes: 2 additions & 2 deletions dist/css/tableexport.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* TableExport.js v3.2.3 (http://www.clarketravis.com)
* Copyright 2015 Travis Clarke
* TableExport.js v3.2.4 (http://www.clarketravis.com)
* Copyright 2016 Travis Clarke
* Licensed under the MIT license
*/

Expand Down
4 changes: 2 additions & 2 deletions dist/css/tableexport.min.css

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

5 changes: 2 additions & 3 deletions dist/js/tableexport.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* TableExport.js v3.2.3 (http://www.clarketravis.com)
* Copyright 2015 Travis Clarke
* TableExport.js v3.2.4 (http://www.clarketravis.com)
* Copyright 2016 Travis Clarke
* Licensed under the MIT license
*/

Expand Down Expand Up @@ -41,7 +41,6 @@
var $cols = $(val).find('th, td');
return [$cols.map(function (i, val) {
if (!!~ignoreCols.indexOf(i) || $(val).is(ignoreCSS)) { return;}
console.log($(val).is(ignoreCSS));
return $(val).text();
}).get()];
}).get(),
Expand Down
6 changes: 3 additions & 3 deletions dist/js/tableexport.min.js

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

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": "3.2.3",
"version": "3.2.4",
"authors": [
"clarketm <[email protected]>"
],
Expand Down
4 changes: 2 additions & 2 deletions src/stable/css/tableexport.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* TableExport.js v3.2.3 (http://www.clarketravis.com)
* Copyright 2015 Travis Clarke
* TableExport.js v3.2.4 (http://www.clarketravis.com)
* Copyright 2016 Travis Clarke
* Licensed under the MIT license
*/

Expand Down
4 changes: 2 additions & 2 deletions src/stable/css/tableexport.min.css

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

5 changes: 2 additions & 3 deletions src/stable/js/tableexport.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* TableExport.js v3.2.3 (http://www.clarketravis.com)
* Copyright 2015 Travis Clarke
* TableExport.js v3.2.4 (http://www.clarketravis.com)
* Copyright 2016 Travis Clarke
* Licensed under the MIT license
*/

Expand Down Expand Up @@ -41,7 +41,6 @@
var $cols = $(val).find('th, td');
return [$cols.map(function (i, val) {
if (!!~ignoreCols.indexOf(i) || $(val).is(ignoreCSS)) { return;}
console.log($(val).is(ignoreCSS));
return $(val).text();
}).get()];
}).get(),
Expand Down
Loading

0 comments on commit 8781499

Please sign in to comment.