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

Commit 0ac107f

Browse files
Travis ClarkeTravis Clarke
authored andcommitted
fix #20 : escape HTML not working for forward slashes
1 parent e9a56a1 commit 0ac107f

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
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.10",
3+
"version": "3.2.11",
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.10 (https://www.travismclarke.com)
2+
* TableExport.js v3.2.11 (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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* TableExport.js v3.2.10 (https://www.travismclarke.com)
2+
* TableExport.js v3.2.11 (https://www.travismclarke.com)
33
* Copyright 2016 Travis Clarke
44
* Licensed under the MIT license
55
*/
@@ -295,7 +295,7 @@
295295
* HTML entity mapping for special characters.
296296
* @memberof TableExport.prototype
297297
*/
298-
entityMap: {"&": "&#38;", "<": "&#60;", ">": "&#62;", "'": '&#39;', "/": '&#47'},
298+
entityMap: {"&": "&#38;", "<": "&#60;", ">": "&#62;", "'": '&#39;', "/": '&#47;'},
299299
/**
300300
* XLSX (Open XML spreadsheet) file extension configuration
301301
* @memberof TableExport.prototype

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.

package.json

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

src/stable/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.10 (https://www.travismclarke.com)
2+
* TableExport.js v3.2.11 (https://www.travismclarke.com)
33
* Copyright 2016 Travis Clarke
44
* Licensed under the MIT license
55
*/

src/stable/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.

src/stable/js/tableexport.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* TableExport.js v3.2.10 (https://www.travismclarke.com)
2+
* TableExport.js v3.2.11 (https://www.travismclarke.com)
33
* Copyright 2016 Travis Clarke
44
* Licensed under the MIT license
55
*/
@@ -295,7 +295,7 @@
295295
* HTML entity mapping for special characters.
296296
* @memberof TableExport.prototype
297297
*/
298-
entityMap: {"&": "&#38;", "<": "&#60;", ">": "&#62;", "'": '&#39;', "/": '&#47'},
298+
entityMap: {"&": "&#38;", "<": "&#60;", ">": "&#62;", "'": '&#39;', "/": '&#47;'},
299299
/**
300300
* XLSX (Open XML spreadsheet) file extension configuration
301301
* @memberof TableExport.prototype

0 commit comments

Comments
 (0)