2015-09-20 22:30:44 -05:00
|
|
|
function getPersonPhone(id, collection){
|
|
|
|
for(var i = 0; i < collection.length; i++){
|
|
|
|
if(collection[i].id == id){
|
|
|
|
return collection[i].phone;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$( document ).ready(function() {
|
2015-09-24 22:00:26 -05:00
|
|
|
$('[data-id=alert_close]').on('click', function(){
|
|
|
|
$(this).parent().slideUp();
|
|
|
|
});
|
|
|
|
|
2015-09-20 22:30:44 -05:00
|
|
|
});
|