var liking = 0;
var in_progress = false;
var langSelect = false;
+ var commentBusy = false;
$(document).ready(function() {
$.ajaxSetup({cache: false});
}) ;
}
timer = setTimeout(NavUpdate,30000);
-
}
function liveUpdate() {
prev = ident;
});
$('.like-rotator').hide();
+ if(commentBusy) {
+ commentBusy = false;
+ $('body').css('cursor', 'auto');
+ }
});
-
}
function imgbright(node) {
}
function post_comment(id) {
+ commentBusy = true;
+ $('body').css('cursor', 'wait');
$.post(
"item",
$("#comment-edit-form-" + id).serialize(),
if(data.reload) {
window.location.href=data.reload;
}
-
},
"json"
);