mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
Wrapped thumbnails with links in post upload form
Improves integration with Vimperator
This commit is contained in:
@ -156,6 +156,7 @@ App.Presenters.PostUploadPresenter = function(
|
||||
$allCheckboxes.prop('checked', false);
|
||||
$myCheckbox.prop('checked', true);
|
||||
postTableCheckboxesChanged(e);
|
||||
tagInput.focus();
|
||||
}
|
||||
|
||||
function postTableCheckboxClicked(e) {
|
||||
@ -312,6 +313,7 @@ App.Presenters.PostUploadPresenter = function(
|
||||
|
||||
$row.removeClass('template');
|
||||
$row.find('td:not(.checkbox)').click(postTableRowClicked);
|
||||
$row.find('a').click(postTableRowClicked);
|
||||
$row.find('td.checkbox').click(postTableCheckboxClicked);
|
||||
$row.data('post', post);
|
||||
$table.find('tbody').append($row);
|
||||
|
Reference in New Issue
Block a user