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

Commit

Permalink
v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobius1 committed Oct 16, 2017
1 parent 3646701 commit 0c96f17
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@ datatable.exportable.print();

## Changelog

`v0.0.4`
* Fix `toCSV()` method not returning string.

`v0.0.3`
* Incorrect file names.

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": "vanilla-datatables-exportable",
"version": "0.0.3",
"version": "0.0.4",
"description": "A Vanilla-DataTables extension to allow for exporting to various formats.",
"main": "datatable.exportable.min.js",
"ignore": [
Expand Down
6 changes: 4 additions & 2 deletions datatable.exportable.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*! Exportable 0.0.2
/*! Exportable 0.0.4
* © 2017 Karl Saunders
*/
/**
* @summary Exportable
* @description Vanilla-DataTables extension to allow for exporting to various formats
* @version 0.0.2
* @version 0.0.4
* @file datatable.editable.js
* @author Karl Saunders
* @contact mobius1@gmx.com
Expand Down Expand Up @@ -161,6 +161,8 @@ if (window.DataTable) {
this.string = "data:text/csv;charset=utf-8," + str;
this.download();
}

return str;
};

/**
Expand Down
6 changes: 3 additions & 3 deletions datatable.exportable.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": "vanilla-datatables-exportable",
"version": "0.0.3",
"version": "0.0.4",
"description": "A Vanilla-DataTables extension to allow for exporting to various formats.",
"main": "datatable.exportable.min.js",
"scripts": {
Expand Down

0 comments on commit 0c96f17

Please sign in to comment.