Skip to content

Commit

Permalink
Awesome export stuff with now 50x more awesome ...
Browse files Browse the repository at this point in the history
  • Loading branch information
sschroffner committed Jun 29, 2016
1 parent c53c0f5 commit 768e29f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/js/tableexporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@
settings = isUpdate ? options : $.extend({}, $.fn.tableExport.defaults, options),
rowD = $.fn.tableExport.rowDel,
ignoreRows = settings.ignoreRows instanceof Array ? settings.ignoreRows : [settings.ignoreRows],
ignoreCols = settings.ignoreCols instanceof Array ? settings.ignoreCols : [settings.ignoreCols];
ignoreCols = settings.ignoreCols instanceof Array ? settings.ignoreCols : [settings.ignoreCols],
ignoreCSS = settings.ignoreCSS instanceof Array ? settings.ignoreCSS.join(", ") : settings.ignoreCSS;

$this.each(function () {
var $el = $(this);
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tableexporter.min.js

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

3 changes: 2 additions & 1 deletion src/stable/js/tableexporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@
settings = isUpdate ? options : $.extend({}, $.fn.tableExport.defaults, options),
rowD = $.fn.tableExport.rowDel,
ignoreRows = settings.ignoreRows instanceof Array ? settings.ignoreRows : [settings.ignoreRows],
ignoreCols = settings.ignoreCols instanceof Array ? settings.ignoreCols : [settings.ignoreCols];
ignoreCols = settings.ignoreCols instanceof Array ? settings.ignoreCols : [settings.ignoreCols],
ignoreCSS = settings.ignoreCSS instanceof Array ? settings.ignoreCSS.join(", ") : settings.ignoreCSS;

$this.each(function () {
var $el = $(this);
Expand Down

0 comments on commit 768e29f

Please sign in to comment.