Skip to content

Commit

Permalink
Merge pull request jspreadsheet#499 from elisardofelix/master
Browse files Browse the repository at this point in the history
Fixed download function with header active
  • Loading branch information
pphod authored Jul 31, 2019
2 parents 294652e + 4e73f8f commit e2d2ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/jexcel.js
Original file line number Diff line number Diff line change
Expand Up @@ -4859,7 +4859,7 @@ var jexcel = (function(el, options) {
// Data
var data = '';
if (includeHeaders == true) {
data += obj.getHeaders();
data += obj.getHeaders().concat('\n');
}
// Get data
data += obj.copy(false, ',', true);
Expand Down

0 comments on commit e2d2ada

Please sign in to comment.