pass vars via javascript, not html. Also fix broken pause img on IE

This commit is contained in:
Mike Macgirvin 2010-09-20 22:27:33 -07:00
parent b9247f1dcc
commit a428695f8e
4 changed files with 17 additions and 15 deletions

View file

@ -49,15 +49,11 @@
event.preventDefault();
if(stopped == false) {
stopped = true;
$('#pause img').attr('src','images/pause.gif');
$('#pause img').css({'border': '1px solid black'});
$('#pause').html('<img src="images/pause.gif" alt="pause" style="border: 1px solid black;" />');
}
else {
stopped = false;
$('#pause img').attr('src','');
$('#pause img').css({'border': 'none'});
$('#pause').html('');
}
}
});
@ -65,8 +61,8 @@
function NavUpdate() {
if($('#live-network').length) { src = 'network'; pr = $('#live-network').attr('profile'); liveUpdate(); }
if($('#live-profile').length) { src = 'profile'; pr = $('#live-profile').attr('profile'); liveUpdate(); }
if($('#live-network').length) { src = 'network'; liveUpdate(); }
if($('#live-profile').length) { src = 'profile'; liveUpdate(); }
if(! stopped) {
$.get("ping",function(data) {
@ -91,14 +87,14 @@
}
function liveUpdate() {
if((src == null) || (stopped)) { $('.like-rotator').hide(); return; }
if((src == null) || (stopped) || (! profile_uid)) { $('.like-rotator').hide(); return; }
if($('.comment-edit-text-full').length) {
livetime = setTimeout(liveUpdate, 10000);
return;
}
prev = 'live-' + src;
$.get('update_' + src + '?p=' + pr + '&msie=' + ((msie) ? 1 : 0),function(data) {
$.get('update_' + src + '?p=' + profile_uid + '&msie=' + ((msie) ? 1 : 0),function(data) {
$('.wall-item-outside-wrapper',data).each(function() {
var ident = $(this).attr('id');
if($('#' + ident).length == 0) {