Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. var waitForConvo = setInterval(function () {
  2.  
  3. if ($('#conversation-details').length > 0) {
  4.  
  5. $('#conversation-details').html('');
  6.  
  7. var html = createHtml(convo);
  8.  
  9. $('#conversation-details').append(html);
  10.  
  11. clearInterval(waitForConvo);
  12.  
  13. }
  14. }, 10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement