Add option to auto-scroll to the bottom.
This commit is contained in:
parent
242208760f
commit
d9e3e7d55c
@ -170,6 +170,7 @@
|
|||||||
checkbox: {
|
checkbox: {
|
||||||
'Beep': [false, 'Beep on new post to completely read thread.'],
|
'Beep': [false, 'Beep on new post to completely read thread.'],
|
||||||
'Auto Scroll': [false, 'Scroll updated posts into view. Only enabled at bottom of page.'],
|
'Auto Scroll': [false, 'Scroll updated posts into view. Only enabled at bottom of page.'],
|
||||||
|
'Bottom scroll': [false, 'Always scroll to the bottom, not the first new post. Useful for event threads.'],
|
||||||
'Scroll BG': [false, 'Auto-scroll background tabs.'],
|
'Scroll BG': [false, 'Auto-scroll background tabs.'],
|
||||||
'Auto Update': [true, 'Automatically fetch new posts.']
|
'Auto Update': [true, 'Automatically fetch new posts.']
|
||||||
},
|
},
|
||||||
@ -5224,7 +5225,11 @@
|
|||||||
scroll = Conf['Auto Scroll'] && ThreadUpdater.scrollBG() && ThreadUpdater.root.getBoundingClientRect().bottom - doc.clientHeight < 25;
|
scroll = Conf['Auto Scroll'] && ThreadUpdater.scrollBG() && ThreadUpdater.root.getBoundingClientRect().bottom - doc.clientHeight < 25;
|
||||||
$.add(ThreadUpdater.root, nodes);
|
$.add(ThreadUpdater.root, nodes);
|
||||||
if (scroll) {
|
if (scroll) {
|
||||||
nodes[0].scrollIntoView();
|
if (Conf['Bottom scroll']) {
|
||||||
|
d.body.scrollTop = d.body.clientHeight;
|
||||||
|
} else {
|
||||||
|
nodes[0].scrollIntoView();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$.queueTask(function() {
|
$.queueTask(function() {
|
||||||
var length, threadID;
|
var length, threadID;
|
||||||
|
|||||||
@ -17,6 +17,7 @@ alpha
|
|||||||
There is now a setting to allow expanding spoilers.
|
There is now a setting to allow expanding spoilers.
|
||||||
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.
|
||||||
|
Added an option to always auto-scroll to the bottom.
|
||||||
Thread Stats post and file count will adjust with deleted posts.
|
Thread Stats post and file count will adjust with deleted posts.
|
||||||
Added Thread & Post Hiding in the Menu, with individual settings.
|
Added Thread & Post Hiding in the Menu, with individual settings.
|
||||||
Thread & Post Hiding Buttons can now be disabled in the settings.
|
Thread & Post Hiding Buttons can now be disabled in the settings.
|
||||||
|
|||||||
@ -161,8 +161,9 @@ Config =
|
|||||||
'Hide': ['x', 'Hide thread.']
|
'Hide': ['x', 'Hide thread.']
|
||||||
updater:
|
updater:
|
||||||
checkbox:
|
checkbox:
|
||||||
'Beep': [false, 'Beep on new post to completely read thread.']
|
'Beep': [false, 'Beep on new post to completely read thread.']
|
||||||
'Auto Scroll': [false, 'Scroll updated posts into view. Only enabled at bottom of page.']
|
'Auto Scroll': [false, 'Scroll updated posts into view. Only enabled at bottom of page.']
|
||||||
'Scroll BG': [false, 'Auto-scroll background tabs.']
|
'Bottom scroll': [false, 'Always scroll to the bottom, not the first new post. Useful for event threads.']
|
||||||
'Auto Update': [true, 'Automatically fetch new posts.']
|
'Scroll BG': [false, 'Auto-scroll background tabs.']
|
||||||
|
'Auto Update': [true, 'Automatically fetch new posts.']
|
||||||
'Interval': 30
|
'Interval': 30
|
||||||
|
|||||||
@ -3531,7 +3531,10 @@ ThreadUpdater =
|
|||||||
ThreadUpdater.root.getBoundingClientRect().bottom - doc.clientHeight < 25
|
ThreadUpdater.root.getBoundingClientRect().bottom - doc.clientHeight < 25
|
||||||
$.add ThreadUpdater.root, nodes
|
$.add ThreadUpdater.root, nodes
|
||||||
if scroll
|
if scroll
|
||||||
nodes[0].scrollIntoView()
|
if Conf['Bottom scroll']
|
||||||
|
d.body.scrollTop = d.body.clientHeight
|
||||||
|
else
|
||||||
|
nodes[0].scrollIntoView()
|
||||||
|
|
||||||
$.queueTask ->
|
$.queueTask ->
|
||||||
# Enable 4chan features.
|
# Enable 4chan features.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user