Update compiled assets

pull/264/head
Daniel Supernault 2018-06-13 23:36:21 -06:00
rodzic a415b421cb
commit 0be5a9ec5d
3 zmienionych plików z 4 dodań i 2 usunięć

2
public/js/app.js vendored

File diff suppressed because one or more lines are too long

Wyświetl plik

@ -1,5 +1,5 @@
{
"/js/app.js": "/js/app.js?id=3757670fb3400994cb38",
"/js/app.js": "/js/app.js?id=10b2b118e1aa4607622d",
"/css/app.css": "/css/app.css?id=d8339100d1c73fdb7957",
"/js/timeline.js": "/js/timeline.js?id=d9a3145c0cd21ca09172",
"/js/activity.js": "/js/activity.js?id=723dfb98bbbc96a9d39f"

Wyświetl plik

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