diff options
author | zottel <github@zottel.net> | 2011-12-06 01:22:59 -0800 |
---|---|---|
committer | zottel <github@zottel.net> | 2011-12-06 01:22:59 -0800 |
commit | 237b4c74c2e0de925795907cbc3e776298f2f068 (patch) | |
tree | e5cf48d53941783972b0c483d1fb09e5347dd281 /js/main.js | |
parent | f3c91edd9577a04c9c9d31140346037f885d8a71 (diff) | |
download | volse-hubzilla-237b4c74c2e0de925795907cbc3e776298f2f068.tar.gz volse-hubzilla-237b4c74c2e0de925795907cbc3e776298f2f068.tar.bz2 volse-hubzilla-237b4c74c2e0de925795907cbc3e776298f2f068.zip |
unpause the stream when posting a comment or liking/disliking
Diffstat (limited to 'js/main.js')
-rw-r--r-- | js/main.js | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/js/main.js b/js/main.js index 2b486beda..829af2258 100644 --- a/js/main.js +++ b/js/main.js @@ -158,14 +158,11 @@ } $('#pause').html('<img src="images/pause.gif" alt="pause" style="border: 1px solid black;" />'); } else { - stopped = false; - totStopped = false; - $('#pause').html(''); + unpause(); } } else { if (!totStopped) { - stopped = false; - $('#pause').html(''); + unpause(); } } }); @@ -302,6 +299,7 @@ // is delayed and NavUpdate runs before it completes. function dolike(ident,verb) { + unpause(); $('#like-rotator-' + ident.toString()).show(); $.get('like/' + ident.toString() + '?verb=' + verb ); if(timer) clearTimeout(timer); @@ -374,6 +372,7 @@ } function post_comment(id) { + unpause(); commentBusy = true; $('body').css('cursor', 'wait'); $.post( @@ -398,6 +397,13 @@ return false; } + function unpause() { + // unpause auto reloads if they are currently stopped + totStopped = false; + stopped = false; + $('#pause').html(''); + } + function bin2hex(s){ // Converts the binary representation of data to hex |