diff options
author | Marvin Borner | 2018-07-03 21:45:17 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-03 21:45:17 +0200 |
commit | f9c4bd9b5af8c3285842515b5659ef03f21a66d2 (patch) | |
tree | cf634bbcb2dfcdc453939c6fcef3d1f8fca68d52 /resources/assets/js/profile.js | |
parent | bcffb8d7c6671fe0ddef7800d61e1deca93fabdd (diff) |
Ajax instead of form for avatar post.
Diffstat (limited to 'resources/assets/js/profile.js')
-rw-r--r-- | resources/assets/js/profile.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/resources/assets/js/profile.js b/resources/assets/js/profile.js index bce94da..d834542 100644 --- a/resources/assets/js/profile.js +++ b/resources/assets/js/profile.js @@ -10,4 +10,30 @@ $("#avatarFile").on("change", () => { if (file) { reader.readAsDataURL(file); } +}); + +$("#avatarForm").submit(function (e) { + var url = "/avatar"; + var data = new FormData(); + $.each(jQuery('#avatarFile')[0].files, (i, file) => { + data.append('avatar', file); + }); + + e.preventDefault(); + $.ajax({ + url: url, + data: data, + cache: false, + contentType: false, + processData: false, + method: 'POST', + type: 'POST', + success: (data) => { + $("#avatarUploadSucceededAlert").show(); + $("#avatarUploadSucceededMessage").text(data.success); + }, + error: () => { + $("#avatarUploadFailedAlert").show(); + } + }); });
\ No newline at end of file |