Skip to content

Commit

Permalink
Release 1.10.13
Browse files Browse the repository at this point in the history
  • Loading branch information
hhurz committed Dec 26, 2019
1 parent d4c7fd9 commit 0799b89
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tableexport.jquery.plugin",
"version": "1.10.12",
"version": "1.10.13",
"description": "html table export",
"main": "tableExport.js",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tableexport.jquery.plugin",
"version": "1.10.12",
"version": "1.10.13",
"description": "html table export",
"main": "tableExport.min.js",
"dependencies": {
Expand Down
16 changes: 8 additions & 8 deletions tableExport.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @preserve tableExport.jquery.plugin
*
* Version 1.10.12
* Version 1.10.13
*
* Copyright (c) 2015-2019 hhurz, https://github.com/hhurz/tableExport.jquery.plugin
*
Expand All @@ -19,14 +19,14 @@
csvSeparator: ',',
csvUseBOM: true,
date: {
html: 'dd/mm/yyyy' // Date format in html source. Supported placeholders: dd, mm, yy, yyyy and a arbitrary single separator character
html: 'dd/mm/yyyy' // Date format used in html source. Supported placeholders: dd, mm, yy, yyyy and a arbitrary single separator character
},
displayTableName: false, // Deprecated
escape: false, // Deprecated
exportHiddenCells: false, // true = speed up export of large tables with hidden cells (hidden cells will be exported !)
fileName: 'tableExport',
htmlContent: false,
htmlHyperlink: 'content', // Export the cell 'content' or the 'href' link of an <a> tag. Will be ignored if onCellHtmlHyperlink is defined
htmlHyperlink: 'content', // Export the 'content' or the 'href' link of <a> tags unless onCellHtmlHyperlink is not defined
ignoreColumn: [],
ignoreRow: [],
jsonScope: 'all', // One of 'head', 'data', 'all'
Expand Down Expand Up @@ -97,9 +97,9 @@
},
onAfterSaveToFile: null, // function(data, fileName)
onBeforeSaveToFile: null, // saveIt = function(data, fileName, type, charset, encoding): Return false to abort save process
onCellData: null, // cellText = function($cell, row, col, href, cellText, cellType)
onCellHtmlData: null, // cellText = function($cell, row, col, htmlContent)
onCellHtmlHyperlink: null, // cellText = function($cell, row, col, href, cellText)
onCellData: null, // Text to export = function($cell, row, col, href, cellText, cellType)
onCellHtmlData: null, // Text to export = function($cell, row, col, htmlContent)
onCellHtmlHyperlink: null, // Text to export = function($cell, row, col, href, cellText)
onIgnoreRow: null, // ignoreRow = function($tr, row): Return true to prevent export of the row
outputMode: 'file', // 'file', 'string', 'base64' or 'window' (experimental)
pdfmake: {
Expand All @@ -118,8 +118,8 @@
},
preventInjection: true, // Prepend a single quote to cell strings that start with =,+,- or @ to prevent formula injection
sql: {
tableEnclosure: '`', // If table or column names contain any characters except letters, numbers, and
columnEnclosure: '`' // underscores usually the name must be delimited by enclosing it in back quotes (`)
tableEnclosure: '`', // If table name or column names contain any characters except letters, numbers, and
columnEnclosure: '`' // underscores, usually the name must be delimited by enclosing it in back quotes (`)
},
tbodySelector: 'tr',
tfootSelector: 'tr', // Set empty ('') to prevent export of tfoot rows
Expand Down
Loading

0 comments on commit 0799b89

Please sign in to comment.