aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-12-15 14:41:24 -0800
committerFriendika <info@friendika.com>2010-12-15 14:41:24 -0800
commitdf2e79dcaf28810e31d4bdc48bdb76e12f70e817 (patch)
tree402d50aa88de4dfddb46258f1cca6d86833d79cd
parent83939f1541219c38f03b90f525ea48512f912323 (diff)
downloadvolse-hubzilla-df2e79dcaf28810e31d4bdc48bdb76e12f70e817.tar.gz
volse-hubzilla-df2e79dcaf28810e31d4bdc48bdb76e12f70e817.tar.bz2
volse-hubzilla-df2e79dcaf28810e31d4bdc48bdb76e12f70e817.zip
prevent concurrent ajax updates
-rw-r--r--README8
-rw-r--r--include/main.js5
2 files changed, 8 insertions, 5 deletions
diff --git a/README b/README
index f35b8c0cf..efd36a137 100644
--- a/README
+++ b/README
@@ -43,11 +43,11 @@ are straight-forward and simple, because we know that relationships rarely are
(straight-forward and simple). Whether you're communicating with drinking
buddies or potential employers, you can rest assured that each is only able to
see the side of you that you wish to present. If you send a private message to
-your aunt Mary, we encrypt it with military grade encryption.
+your aunt Mary, we will encrypt it with military grade encryption.
-Other social network projects talk about privacy and offering a feature-rich
-social networking alternative, but all they can deliver is vapour and vague
-promises. Friendika delivers the goods. Time and time again.
+Other distributed social network projects talk about privacy and offering a
+feature-rich social networking alternative, but all they can deliver is vapour
+and vague promises. Friendika delivers the goods, time and time again.
A single instance of Friendika can easily support hundreds of (and up to
several thousand) people using commodity hosting hardware. Each of these
diff --git a/include/main.js b/include/main.js
index 1b5553161..ef6b059cc 100644
--- a/include/main.js
+++ b/include/main.js
@@ -25,6 +25,7 @@
var timer = null;
var pr = 0;
var liking = 0;
+ var in_progress = false;
$(document).ready(function() {
$.ajaxSetup({cache: false});
@@ -87,13 +88,15 @@
function liveUpdate() {
if((src == null) || (stopped) || (! profile_uid)) { $('.like-rotator').hide(); return; }
- if($('.comment-edit-text-full').length) {
+ if(($('.comment-edit-text-full').length) || (in_progress)) {
livetime = setTimeout(liveUpdate, 10000);
return;
}
prev = 'live-' + src;
+ in_progress = true;
$.get('update_' + src + '?p=' + profile_uid + '&msie=' + ((msie) ? 1 : 0),function(data) {
+ in_progress = false;
$('.wall-item-outside-wrapper',data).each(function() {
var ident = $(this).attr('id');
if($('#' + ident).length == 0) {