Changelog. Actually update the thread when going back online.

This commit is contained in:
Nicolas Stepien 2013-01-24 22:53:44 +01:00
parent 7e2fb6d4ae
commit ddbab74efb
3 changed files with 5 additions and 0 deletions

View File

@ -2419,6 +2419,9 @@
if (this.online = navigator.onLine) { if (this.online = navigator.onLine) {
this.unsuccessfulFetchCount = 0; this.unsuccessfulFetchCount = 0;
this.set('timer', this.getInterval()); this.set('timer', this.getInterval());
if (Conf['Auto Update This']) {
this.update();
}
this.set('status', null); this.set('status', null);
this.status.className = null; this.status.className = null;
} else { } else {

View File

@ -2,6 +2,7 @@ alpha
- Mayhem - Mayhem
Added touch and multi-touch support for dragging windows. Added touch and multi-touch support for dragging windows.
The Thread Updater will pause when offline, and resume when online. The Thread Updater will pause when offline, and resume when online.
Recursive Hiding will be automatically applied when manually hiding a post.
Fix Chrome's install warning that 4chan X would execute on all domains. Fix Chrome's install warning that 4chan X would execute on all domains.
Fix Quote Backlinks not affecting inlined quotes. Fix Quote Backlinks not affecting inlined quotes.
Fix Quote Highlighting not affecting inlined quotes. Fix Quote Highlighting not affecting inlined quotes.

View File

@ -1424,6 +1424,7 @@ ThreadUpdater =
if @online = navigator.onLine if @online = navigator.onLine
@unsuccessfulFetchCount = 0 @unsuccessfulFetchCount = 0
@set 'timer', @getInterval() @set 'timer', @getInterval()
@update() if Conf['Auto Update This']
@set 'status', null @set 'status', null
@status.className = null @status.className = null
else else