Fixed unable to click checkboxes in post upload

This commit is contained in:
Marcin Kurczewski
2014-09-20 09:24:57 +02:00
parent 4c75232a80
commit 8e6d7af3ea
2 changed files with 4 additions and 2 deletions

View File

@ -160,6 +160,8 @@ App.Presenters.PostUploadPresenter = function(
$row.find('img').mouseleave(postTableRowImageUnhovered);
$row.data('post', post);
$table.find('tbody').append($row);
$row.find('td.checkbox input').attr('id', _.uniqueId());
$row.find('td.checkbox label').attr('for', $row.find('td.checkbox input').attr('id'));
postChanged(post);