sms-pager/app/assets/javascripts/main.js

16 lines
297 B
JavaScript
Raw Permalink Normal View History

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