diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-24 06:56:02 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-24 06:56:02 -0700 |
commit | a93f5627c1cb05f2f2c14cc390d38799eaf461e8 (patch) | |
tree | 2511f2145617c5f30499906833dc4d70aafb91ab /view | |
parent | 1db8ab907bb191b215f74be456861f1ca59ded48 (diff) | |
download | volse-hubzilla-a93f5627c1cb05f2f2c14cc390d38799eaf461e8.tar.gz volse-hubzilla-a93f5627c1cb05f2f2c14cc390d38799eaf461e8.tar.bz2 volse-hubzilla-a93f5627c1cb05f2f2c14cc390d38799eaf461e8.zip |
live update
Diffstat (limited to 'view')
-rw-r--r-- | view/jot-header.tpl | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl index 760cf5882..8505b53bc 100644 --- a/view/jot-header.tpl +++ b/view/jot-header.tpl @@ -50,6 +50,43 @@ tinyMCE.init({ } } + var src = null; + + $(document).ready(function() { + if($('#live-network').length) { src = 'net'; setTimeout(liveUpdate, 30000); } + if($('#live-profile').length) { src = 'wall'; setTimeout(liveUpdate, 30000); } + }); + + function liveUpdate() { + if(src == null) { return; } + if($('.comment-edit-text-full').length) { + setTimeout(liveUpdate, 30000); + return; + } + +// $.get("live_update",function(data) +// { +// $(data).find('result').each(function() { +// var net = $(this).find('net').text(); +// if(net == 0) { net = ''; } +// $('#net-update').html(net); +// var home = $(this).find('home').text(); +// if(home == 0) { home = ''; } +// $('#home-update').html(home); +// var mail = $(this).find('mail').text(); +// if(mail == 0) { mail = ''; } +// $('#mail-update').html(mail); +// var intro = $(this).find('intro').text(); +// if(intro == 0) { intro = ''; } +// $('#notify-update').html(intro); +// }); +// }) ; + + setTimeout(liveUpdate,30000); + } + + + </script> |