Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. var updates = {};
  2.  
  3. //pr_id exists and the contact is starred.
  4. if( contact.pr_id && contact.starred ){
  5. return false;
  6. }
  7.  
  8. if(updates[contact.id]){
  9. clearTimeout(updates[contact.id]);
  10. }
  11.  
  12. updates[contact.id] = setTimeout(function(){
  13. //apply starred state here.
  14. updateContact(contact);
  15. }, 300);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement