Update commentform

Closes #284
This commit is contained in:
Daniel Supernault 2018-06-17 21:45:01 -06:00
parent 2d6bb19a84
commit 4d686b8074
4 changed files with 1 additions and 1 deletions

BIN
public/css/app.css vendored

Binary file not shown.

BIN
public/js/app.js vendored

Binary file not shown.

Binary file not shown.

View file

@ -11,7 +11,7 @@ $(document).ready(function() {
let el = $(this);
let id = el.data('id');
let commentform = el.find('input[name="comment"]');
let commenttext = commentform.val();
let commenttext = $(commentform.val()).text();
let item = {item: id, comment: commenttext};
commentform.prop('disabled', true);