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

Commit

Permalink
v0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobius1 committed Oct 23, 2017
1 parent e1a3c85 commit 9a3857f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 22 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ NOTE: This extension is only compatable with `v2.0.0` and above of `Vanilla-Data

### Install

## Bower
```
bower install vanilla-datatables-exportable --save
```

## npm
```
npm install vanilla-datatables-exportable --save
Expand Down Expand Up @@ -195,6 +190,10 @@ datatable.exportable.print();

## Changelog


`v0.0.10`
* Set `columnize` to `false` as default.

`v0.0.9`
* Added `toText()` method to export to text file/string;
* Allow formatting (padding) of text string to columns
Expand Down
10 changes: 0 additions & 10 deletions bower.json

This file was deleted.

6 changes: 3 additions & 3 deletions datatable.exportable.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*! Exportable 0.0.9
/*! Exportable 0.0.10
* © 2017 Karl Saunders
*/
/**
* @summary Exportable
* @description Vanilla-DataTables extension to allow for exporting to various formats
* @version 0.0.9
* @version 0.0.10
* @file datatable.exportable.js
* @author Karl Saunders
* @contact [email protected]
Expand Down Expand Up @@ -36,7 +36,7 @@ if (window.DataTable) {
lineDelimiter: "\n",
columnDelimiter: ",",
includeHeadings: true,
columnize: true,
columnize: false,
paddingCharacter: " ",

// sql
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.9",
"version": "0.0.10",
"description": "A Vanilla-DataTables extension to allow for exporting to various formats.",
"main": "datatable.exportable.min.js",
"scripts": {
Expand Down

0 comments on commit 9a3857f

Please sign in to comment.