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

Commit

Permalink
v3.2.13 – added ts definition support
Browse files Browse the repository at this point in the history
  • Loading branch information
clarketm committed Oct 4, 2016
1 parent 24e9695 commit ffc1d80
Show file tree
Hide file tree
Showing 16 changed files with 507 additions and 15 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.js",
"version": "3.2.12",
"version": "3.2.13",
"authors": [
"clarketm <travis.m.clarke@gmail.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/css/tableexport.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* TableExport.js v3.2.12 (https://www.travismclarke.com)
* TableExport.js v3.2.13 (https://www.travismclarke.com)
* Copyright 2016 Travis Clarke
* Licensed under the MIT license
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/css/tableexport.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions dist/js/tableexport.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* TableExport.js v3.2.12 (https://www.travismclarke.com)
* TableExport.js v3.2.13 (https://www.travismclarke.com)
* Copyright 2016 Travis Clarke
* Licensed under the MIT license
*/
Expand All @@ -22,7 +22,6 @@
* @param selectors {jQuery} jQuery selector(s)
* @param options {Object} TableExport configuration options
* @param isUpdate {Boolean}
* @function update { }
* @constructor
*/
var TableExport = function (selectors, options, isUpdate) {
Expand Down Expand Up @@ -359,6 +358,7 @@
/**
* Escapes special characters with HTML entities
* @memberof TableExport.prototype
* @param string {String}
* @returns {String} escaped string
*/
escapeHtml: function (string) {
Expand All @@ -369,6 +369,8 @@
/**
* Formats datetimes for compatibility with Excel
* @memberof TableExport.prototype
* @param v {Number}
* @param date1904 {Date}
* @returns {Number} epoch time
*/
dateNum: function (v, date1904) {
Expand Down Expand Up @@ -421,6 +423,7 @@
},
/**
* Converts a string to an arraybuffer
* @param s {String}
* @memberof TableExport.prototype
* @returns {ArrayBuffer}
*/
Expand Down
4 changes: 2 additions & 2 deletions dist/js/tableexport.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/typings/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from 'tableexport/tableexport';
Loading

0 comments on commit ffc1d80

Please sign in to comment.