Commit cd888bf2 authored by Romain Loth's avatar Romain Loth

stop forcing numeric ids for nodes

parent c7f2dcc1
......@@ -814,7 +814,7 @@ function dictfyGexf( gexf , categories ){
for(var i in TW.Relations) {
for(var j in TW.Relations[i]) {
TW.Relations[i][j] = Object.keys(TW.Relations[i][j]).map(Number)
TW.Relations[i][j] = Object.keys(TW.Relations[i][j])
}
}
......@@ -1036,7 +1036,7 @@ function dictfyJSON( data , categories ) {
for(var i in TW.Relations) {
for(var j in TW.Relations[i]) {
TW.Relations[i][j] = Object.keys(TW.Relations[i][j]).map(Number)
TW.Relations[i][j] = Object.keys(TW.Relations[i][j])
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment