Skip to content
This repository was archived by the owner on Jul 25, 2021. It is now read-only.

Commit ffc1d80

Browse files
committed
v3.2.13 – added ts definition support
1 parent 24e9695 commit ffc1d80

File tree

16 files changed

+507
-15
lines changed

16 files changed

+507
-15
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tableexport.js",
3-
"version": "3.2.12",
3+
"version": "3.2.13",
44
"authors": [
55
"clarketm <travis.m.clarke@gmail.com>"
66
],

dist/css/tableexport.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* TableExport.js v3.2.12 (https://www.travismclarke.com)
2+
* TableExport.js v3.2.13 (https://www.travismclarke.com)
33
* Copyright 2016 Travis Clarke
44
* Licensed under the MIT license
55
*/

dist/css/tableexport.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/tableexport.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* TableExport.js v3.2.12 (https://www.travismclarke.com)
2+
* TableExport.js v3.2.13 (https://www.travismclarke.com)
33
* Copyright 2016 Travis Clarke
44
* Licensed under the MIT license
55
*/
@@ -22,7 +22,6 @@
2222
* @param selectors {jQuery} jQuery selector(s)
2323
* @param options {Object} TableExport configuration options
2424
* @param isUpdate {Boolean}
25-
* @function update { }
2625
* @constructor
2726
*/
2827
var TableExport = function (selectors, options, isUpdate) {
@@ -359,6 +358,7 @@
359358
/**
360359
* Escapes special characters with HTML entities
361360
* @memberof TableExport.prototype
361+
* @param string {String}
362362
* @returns {String} escaped string
363363
*/
364364
escapeHtml: function (string) {
@@ -369,6 +369,8 @@
369369
/**
370370
* Formats datetimes for compatibility with Excel
371371
* @memberof TableExport.prototype
372+
* @param v {Number}
373+
* @param date1904 {Date}
372374
* @returns {Number} epoch time
373375
*/
374376
dateNum: function (v, date1904) {
@@ -421,6 +423,7 @@
421423
},
422424
/**
423425
* Converts a string to an arraybuffer
426+
* @param s {String}
424427
* @memberof TableExport.prototype
425428
* @returns {ArrayBuffer}
426429
*/

dist/js/tableexport.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/typings/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from 'tableexport/tableexport';

0 commit comments

Comments
 (0)