feat: allow file uploads on mobile chat

closes https://github.com/NodeBB/NodeBB/issues/11217
This commit is contained in:
Barış Soner Uşaklı
2023-01-25 20:50:34 -05:00
parent 557198a377
commit 79731735c0
3 changed files with 24 additions and 0 deletions

View File

@@ -74,6 +74,7 @@ define('forum/chats', [
dragDropAreaEl: $('.chats-full'),
pasteEl: $('[component="chat/input"]'),
uploadFormEl: $('[component="chat/upload"]'),
uploadBtnEl: $('[component="chat/upload/button"]'),
inputEl: $('[component="chat/input"]'),
});
@@ -87,6 +88,7 @@ define('forum/chats', [
dragDropAreaEl: options.dragDropAreaEl,
pasteEl: options.pasteEl,
uploadFormEl: options.uploadFormEl,
uploadBtnEl: options.uploadBtnEl,
route: '/api/post/upload', // using same route as post uploads
callback: function (uploads) {
const inputEl = options.inputEl;