Update compiled assets

This commit is contained in:
Daniel Supernault 2018-06-13 23:36:21 -06:00
parent a415b421cb
commit 0be5a9ec5d
3 changed files with 2 additions and 0 deletions

BIN
public/js/app.js vendored

Binary file not shown.

Binary file not shown.

View file

@ -14,6 +14,7 @@ $(document).ready(function() {
let commenttext = commentform.val();
let item = {item: id, comment: commenttext};
commentform.prop('disabled', true);
axios.post('/i/comment', item)
.then(function (res) {
@ -33,6 +34,7 @@ $(document).ready(function() {
commentform.val('');
commentform.blur();
commentform.prop('disabled', false);
})
.catch(function (res) {