Commit ec4db78f authored by Michal Čihař's avatar Michal Čihař

This is now input

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 791ac63e
...@@ -327,7 +327,7 @@ $(function () { ...@@ -327,7 +327,7 @@ $(function () {
$cell.append(data); $cell.append(data);
$cell.find('[data-flag]').click(function (e) { $cell.find('[data-flag]').click(function (e) {
var $this = $(this); var $this = $(this);
var $textarea = $this.closest('td').find('textarea'); var $textarea = $this.closest('td').find('input[type="text"]');
if ($textarea.val().length > 0) { if ($textarea.val().length > 0) {
$textarea.val($textarea.val() + ',' + $this.data('flag')); $textarea.val($textarea.val() + ',' + $this.data('flag'));
} else { } else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment