Wrapped thumbnails with links in post upload form

Improves integration with Vimperator
This commit is contained in:
Marcin Kurczewski
2015-05-16 12:31:27 +02:00
parent 627a8db5f3
commit 0727433a9e
2 changed files with 5 additions and 1 deletions

View File

@ -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);