Skip to content
Snippets Groups Projects
Commit 9d2dbf19 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'family-tree-fix' into 'pregmod-master'

Family Tree Display Fix

See merge request pregmodfan/fc-pregmod!1875
parents c04fea04 6bedfe8b
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ window.renderFamilyTree = function(slaves, filterID) { ...@@ -118,7 +118,7 @@ window.renderFamilyTree = function(slaves, filterID) {
node.append('circle') node.append('circle')
.attr('r', function(d){ return d.r }) .attr('r', function(d){ return d.r })
.attr('stroke', function(d) { .attr('stroke', function(d) {
if(d.id == filterID) { if(d.ID == filterID) {
return '#ffff20'; return '#ffff20';
} else { } else {
return '#5a5a5a'; return '#5a5a5a';
...@@ -131,8 +131,14 @@ window.renderFamilyTree = function(slaves, filterID) { ...@@ -131,8 +131,14 @@ window.renderFamilyTree = function(slaves, filterID) {
.text(function(d) { .text(function(d) {
var ssym; var ssym;
if(d.ID == -1) { if(d.ID == -1) {
ssym = ''; if(d.dick == 1 && d.vagina == 1) {
} else if(d.dick > 0 && d.vagina > -1) { ssym = '☿'
} else if (d.dick == 1) {
ssym = '♂';
} else if (d.vagina == 1) {
ssym = '♀';
}
} else if (d.dick > 0 && d.vagina > -1) {
ssym = '☿' ssym = '☿'
} else if (d.dick > 0) { } else if (d.dick > 0) {
ssym = '♂'; ssym = '♂';
...@@ -384,7 +390,7 @@ window.buildFamilyTree = function(slaves = State.variables.slaves, filterID) { ...@@ -384,7 +390,7 @@ window.buildFamilyTree = function(slaves = State.variables.slaves, filterID) {
} }
node_lookup[char_id] = family_graph.nodes.length; node_lookup[char_id] = family_graph.nodes.length;
var char_obj = { var char_obj = {
id: char_id, ID: char_id,
name: character.slaveName, name: character.slaveName,
dick: character.dick, dick: character.dick,
unborn: !!unborn[char_id], unborn: !!unborn[char_id],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment