forked from mirror/pixelfed
Update compiled assets
This commit is contained in:
parent
a415b421cb
commit
0be5a9ec5d
3 changed files with 4 additions and 2 deletions
2
public/js/app.js
vendored
2
public/js/app.js
vendored
File diff suppressed because one or more lines are too long
|
@ -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"
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue