Skip to content

Commit 8781499

Browse files
committed
code cleanup, logging removal, and copyright/license updates
1 parent 6058eee commit 8781499

10 files changed

Lines changed: 21 additions & 24 deletions

File tree

bower.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tableexport.js",
3-
"version": "3.2.3",
3+
"version": "3.2.4",
44
"authors": [
55
"clarketm <travis.m.clarke@gmail.com>"
66
],
@@ -9,8 +9,7 @@
99
"keywords": [
1010
"table",
1111
"export",
12-
"table",
13-
"export",
12+
"tableexport",
1413
"Excel",
1514
"xlsx",
1615
"xls",

dist/css/tableexport.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* TableExport.js v3.2.3 (http://www.clarketravis.com)
3-
* Copyright 2015 Travis Clarke
2+
* TableExport.js v3.2.4 (http://www.clarketravis.com)
3+
* Copyright 2016 Travis Clarke
44
* Licensed under the MIT license
55
*/
66

dist/css/tableexport.min.css

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

dist/js/tableexport.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* TableExport.js v3.2.3 (http://www.clarketravis.com)
3-
* Copyright 2015 Travis Clarke
2+
* TableExport.js v3.2.4 (http://www.clarketravis.com)
3+
* Copyright 2016 Travis Clarke
44
* Licensed under the MIT license
55
*/
66

@@ -41,7 +41,6 @@
4141
var $cols = $(val).find('th, td');
4242
return [$cols.map(function (i, val) {
4343
if (!!~ignoreCols.indexOf(i) || $(val).is(ignoreCSS)) { return;}
44-
console.log($(val).is(ignoreCSS));
4544
return $(val).text();
4645
}).get()];
4746
}).get(),

dist/js/tableexport.min.js

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tableexport",
3-
"version": "3.2.3",
3+
"version": "3.2.4",
44
"authors": [
55
"clarketm <travis.m.clarke@gmail.com>"
66
],

src/stable/css/tableexport.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* TableExport.js v3.2.3 (http://www.clarketravis.com)
3-
* Copyright 2015 Travis Clarke
2+
* TableExport.js v3.2.4 (http://www.clarketravis.com)
3+
* Copyright 2016 Travis Clarke
44
* Licensed under the MIT license
55
*/
66

src/stable/css/tableexport.min.css

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

src/stable/js/tableexport.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* TableExport.js v3.2.3 (http://www.clarketravis.com)
3-
* Copyright 2015 Travis Clarke
2+
* TableExport.js v3.2.4 (http://www.clarketravis.com)
3+
* Copyright 2016 Travis Clarke
44
* Licensed under the MIT license
55
*/
66

@@ -41,7 +41,6 @@
4141
var $cols = $(val).find('th, td');
4242
return [$cols.map(function (i, val) {
4343
if (!!~ignoreCols.indexOf(i) || $(val).is(ignoreCSS)) { return;}
44-
console.log($(val).is(ignoreCSS));
4544
return $(val).text();
4645
}).get()];
4746
}).get(),

0 commit comments

Comments
 (0)