This is a TNG mod directive file %name:Family Indicators No Popups% %version:V10.1.0.1c% %description:This is a no popup version of the Family Indicators mod based on v9001 updated by Ken Roy for TNG 10.1 to resolve the issue of Custom Event toggles and links not working on the iPad and mini iPad devices.% %wikipage:Family_Indicators_Mod% //$$ changed to '1c' so mod compare = wiki version // Mod by Jeff Robison 11/24/11 %target:getperson.php% Location 1 - line 23 %location:% $descend_url = getURL( "descend", 1 ); %end:% %insert:after% $pedigree_url = getURL( "pedigree", 1 ); $indchr = "\"{$text['ancestors']}\""; %end:% Location 2 - line 212 //INDIVIDUAL'S FATHER %location:% $fatherlink = "$fathname"; %end:% %insert:after% //CHECK FOR FATHER ANCESTORS $fatherparents = getChildParentsFamily($tree, $fathrow['personID']); $fatherprts = tng_fetch_assoc( $fatherparents ); if ( $fatherprts ) $fatherlink = "$indchr" . $fatherlink; %end:% Location 3 - line 233 //INDIVIDUAL'S MOTHER %location:% $motherlink = "$mothname"; %end:% %insert:after% //CHECK FOR MOTHER ANCESTORS $motherparents = getChildParentsFamily($tree, $mothrow['personID']); $motherprts = tng_fetch_assoc( $motherparents ); if ( $motherprts ) $motherlink = "$indchr" . $motherlink; %end:% Location 4 - line 325 //INDIVIDUAL'S SPOUSE %location:% $spouselink = "$spousename"; %end:% %insert:after% //CHECK FOR SPOUSE ANCESTORS $spouseparents = getChildParentsFamily($tree, $spouserow['personID']); $spouseprts = tng_fetch_assoc( $spouseparents ); if ( $spouseprts ) $spouselink = "$indchr" . $spouselink; %end:% Location 5 - line 389 -- Note that verify location was changed to the previous line to avoid conflict with Age Calculation Mod %location:% $childname = getName( $child ); %end:% %insert:after% //CHECK IF KID MARRIED if ( $ifkids != " " ) $ifkids = "+"; $rugratmd = getSpouseFamilyFullUnion($tree, $childID); $rugratmarried = tng_fetch_assoc( $rugratmd ); if ( $rugratmarried && $ifkids == " " ) $ifkids = "\"{$text['married']}\""; %end:% %target:css/genstyle.css% %location:% /* normal: most regular body text */ %end:% %insert:after% /* Added by Family Indicators Mod for alignment on ancestor indicator icons*/ .ancestoricon { /* vertical-align:bottom; */ vertical-align:bottom; padding:1px; margin: 2px 3px 0px 0px; border: 0px; width: 10px; height: 11px; text-decoration: none; } /* Added by Family Indicators Mod for alignment on ancestor indicator icons*/ .descendicon { /* vertical-align:bottom; */ vertical-align:bottom; padding:1px; margin: 3px 3px 0px 0px; border: 0px; width: 11px; height: 10px; text-decoration: none; } %end:% %copyfile2:ArrowRight_sm.gif:img/ArrowRight_sm.gif%