watch.js: update status on new own posts as fast as possible. fixes vichan-devel#41

This commit is contained in:
Marcin Łabanowski 2014-01-26 18:07:34 +01:00
parent 46d527ecf6
commit 9109096ea8
2 changed files with 3 additions and 1 deletions

View File

@ -85,6 +85,8 @@ $(window).ready(function() {
if($('#' + id).length == 0) { if($('#' + id).length == 0) {
$(this).insertAfter($('div.post:last').next()).after('<br class="clear">'); $(this).insertAfter($('div.post:last').next()).after('<br class="clear">');
$(document).trigger('new_post', this); $(document).trigger('new_post', this);
// watch.js & auto-reload.js retrigger
setTimeout(function() { window.trigger("scroll"); }, 100);
} }
}); });

View File

@ -360,7 +360,7 @@ $(function(){
fetch_jsons(); fetch_jsons();
refresh = false; refresh = false;
} }
}); }).trigger("scroll");
if (typeof add_title_collector != "undefined") if (typeof add_title_collector != "undefined")
add_title_collector(function() { add_title_collector(function() {