mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-23 23:20:57 +01:00
Catalog: click to scroll thread
This commit is contained in:
parent
3515fdabe7
commit
65ea7b78c5
@ -35,4 +35,14 @@ if (active_page == 'catalog') $(function(){
|
|||||||
if (catalog.image_size !== undefined) {
|
if (catalog.image_size !== undefined) {
|
||||||
$('#image_size').val(catalog.image_size).trigger('change');
|
$('#image_size').val(catalog.image_size).trigger('change');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$('div.thread').on('click', function(e) {
|
||||||
|
if ($(this).css('overflow-y') === 'hidden') {
|
||||||
|
$(this).css('overflow-y', 'auto');
|
||||||
|
$(this).css('width', '100%');
|
||||||
|
} else {
|
||||||
|
$(this).css('overflow-y', 'hidden');
|
||||||
|
$(this).css('width', 'auto');
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
@ -1033,7 +1033,6 @@ div.boardlist a {
|
|||||||
#watchlist-toggle, .watchThread, .watchlist-remove, #clearList, #clearGhosts {
|
#watchlist-toggle, .watchThread, .watchlist-remove, #clearList, #clearGhosts {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
<<<<<<< HEAD
|
|
||||||
|
|
||||||
#youtube-size input {
|
#youtube-size input {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
|
Loading…
Reference in New Issue
Block a user