send page start

This commit is contained in:
2015-09-20 22:30:44 -05:00
parent 692446b97b
commit c425f63ee9
13 changed files with 117 additions and 41 deletions

View File

@ -0,0 +1,10 @@
function getPersonPhone(id, collection){
for(var i = 0; i < collection.length; i++){
if(collection[i].id == id){
return collection[i].phone;
}
}
}
$( document ).ready(function() {
});