diff --git a/js/ajax.js b/js/ajax.js
index 31634e9e..c312c130 100644
--- a/js/ajax.js
+++ b/js/ajax.js
@@ -79,7 +79,6 @@ $(window).ready(function() {
|| (!settings.get('always_noko_replies', true) && !post_response.noko)) {
document.location = post_response.redirect;
} else {
- console.log("do nothing for now, this behaviour will be handled by auto-reload.js");
/*
$.ajax({
url: document.location,
diff --git a/js/auto-reload.js b/js/auto-reload.js
index 5c2b7064..623027d4 100644
--- a/js/auto-reload.js
+++ b/js/auto-reload.js
@@ -232,18 +232,13 @@ $(document).ready(function(){
$.ajax({
url: document.location,
success: function(data) {
- console.log("poll ajax succes");
- console.log(data);
var loaded_posts = 0; // the number of new posts loaded in this update
$(data).find('div.post.reply').each(function() {
- console.log("new data post reply:", this);
var id = $(this).attr('id');
- console.log("new data post reply id:", id);
// check that this post doesn't already exist
if($('#' + id).length == 0) {
- console.log("post with id ", id, "does not already exist on the page");
if (!new_posts) {
first_new_post = this;
makeIcon('reply');
@@ -253,19 +248,15 @@ $(document).ready(function(){
}
}
if ($("div.post").length > 1){
- console.log("adding post A");
$(this).parent().insertAfter($('div.post:not(.post-hover):last').parent().next()).after('
');
}
else {
- console.log("adding post B");
$(this).insertAfter($('div.post:not(.post-hover):last')).after('
');
}
new_posts++;
loaded_posts++;
$(document).trigger('new_post', this);
recheck_activated();
- } else {
- console.log("post with id ", id, "already exists on the page, not adding");
}
});
@@ -325,7 +316,6 @@ $(document).ready(function(){
};
$(post).on('submit', function(e){
- console.log("post on submit");
setTimeout(
function() {
poll(manualUpdate = true)