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

Commit 9d9425d

Browse files
committed
v5.0.0-rc.10 - fix: reset hashCode seed for cloned nodes and dynamic tables
1 parent 4296c56 commit 9d9425d

File tree

11 files changed

+20
-18
lines changed

11 files changed

+20
-18
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": "5.0.0-rc.9",
3+
"version": "5.0.0-rc.10",
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 v5.0.0-rc.9 (https://www.travismclarke.com)
2+
* TableExport.js v5.0.0-rc.10 (https://www.travismclarke.com)
33
*
44
* Copyright (c) 2017 - Travis Clarke - https://www.travismclarke.com
55
*

dist/css/tableexport.min.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* TableExport.js v5.0.0-rc.9 (https://www.travismclarke.com)
2+
* TableExport.js v5.0.0-rc.10 (https://www.travismclarke.com)
33
*
44
* Copyright (c) 2017 - Travis Clarke - https://www.travismclarke.com
55
*

dist/js/tableexport.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* TableExport.js v5.0.0-rc.9 (https://www.travismclarke.com)
2+
* TableExport.js v5.0.0-rc.10 (https://www.travismclarke.com)
33
*
44
* Copyright (c) 2017 - Travis Clarke - https://www.travismclarke.com
55
*
@@ -148,7 +148,7 @@
148148
* Version.
149149
* @memberof TableExport.prototype
150150
*/
151-
version: '5.0.0-rc.9',
151+
version: '5.0.0-rc.10',
152152
/**
153153
* Default library options.
154154
* @memberof TableExport.prototype
@@ -983,9 +983,10 @@
983983
})();
984984

985985
var _hashCode = (function () {
986-
var hash = 0, i, char;
987986

988987
return function (hashKey) {
988+
var hash = 0, i, char;
989+
989990
var type = hashKey.type;
990991
hashKey = JSON.stringify(hashKey);
991992
if (hashKey.length === 0) return hash;

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/tableexport.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// Type definitions for TableExport v5.0.0-rc.9
1+
// Type definitions for TableExport v5.0.0-rc.10
22
// Project: https://tableexport.v4.travismclarke.com
33
// Definitions by: Travis Clarke <https://github.com/clarketm>
44

55
/*!
6-
* TableExport.js v5.0.0-rc.9 (https://www.travismclarke.com)
6+
* TableExport.js v5.0.0-rc.10 (https://www.travismclarke.com)
77
*
88
* Copyright (c) 2017 - Travis Clarke - https://www.travismclarke.com
99
*

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": "5.0.0-rc.9",
3+
"version": "5.0.0-rc.10",
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 v5.0.0-rc.9 (https://www.travismclarke.com)
2+
* TableExport.js v5.0.0-rc.10 (https://www.travismclarke.com)
33
*
44
* Copyright (c) 2017 - Travis Clarke - https://www.travismclarke.com
55
*

src/stable/css/tableexport.min.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* TableExport.js v5.0.0-rc.9 (https://www.travismclarke.com)
2+
* TableExport.js v5.0.0-rc.10 (https://www.travismclarke.com)
33
*
44
* Copyright (c) 2017 - Travis Clarke - https://www.travismclarke.com
55
*

src/stable/js/tableexport.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* TableExport.js v5.0.0-rc.9 (https://www.travismclarke.com)
2+
* TableExport.js v5.0.0-rc.10 (https://www.travismclarke.com)
33
*
44
* Copyright (c) 2017 - Travis Clarke - https://www.travismclarke.com
55
*
@@ -148,7 +148,7 @@
148148
* Version.
149149
* @memberof TableExport.prototype
150150
*/
151-
version: '5.0.0-rc.9',
151+
version: '5.0.0-rc.10',
152152
/**
153153
* Default library options.
154154
* @memberof TableExport.prototype
@@ -983,9 +983,10 @@
983983
})();
984984

985985
var _hashCode = (function () {
986-
var hash = 0, i, char;
987986

988987
return function (hashKey) {
988+
var hash = 0, i, char;
989+
989990
var type = hashKey.type;
990991
hashKey = JSON.stringify(hashKey);
991992
if (hashKey.length === 0) return hash;

0 commit comments

Comments
 (0)