diff options
| author | garbash <dor.garbash@gmail.com> | 2014-08-17 13:16:48 +0300 |
|---|---|---|
| committer | garbash <dor.garbash@gmail.com> | 2014-08-17 13:16:48 +0300 |
| commit | 45368fbbc0c90daf28e40f028b5156bd6dbd6616 (patch) | |
| tree | faed4273f16ef0b02685384837da9f64494b794e /scripts | |
| parent | bd7313e6b0bb64b2eeb2ce46cbb1949dd0af977a (diff) | |
Fixed node title shorten function
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/rhizicore.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rhizicore.js b/scripts/rhizicore.js index c04fec10..85d23a52 100644 --- a/scripts/rhizicore.js +++ b/scripts/rhizicore.js @@ -485,7 +485,7 @@ function myGraph(el) { else if (d.state === "chosen") { return d.id; } else { - if (d.id.length < 25) return d.id; + if (d.id.length < 28) return d.id; else return d.id.substring(0, 25) + "..."; } }) |
