14
edits
No edit summary |
No edit summary |
||
Line 61: | Line 61: | ||
jetpack.notifications.show( person["durationOfRelationship"] ); | jetpack.notifications.show( person["durationOfRelationship"] ); | ||
var people = jetpack.people.find(function(person) { | |||
return person.isStrongTie; | return person.isStrongTie; | ||
}); | }); | ||
if ( person ) | if ( people ) { | ||
for (var person in people ) { | |||
jetpack.notifications.show( person["fullName"] ); | |||
} | |||
} | |||
</pre> | </pre> |
edits