fixes for liveui
This commit is contained in:
parent
4b02ad6d89
commit
32566bfd84
@ -998,6 +998,7 @@ Chat.prototype.sendInput = function(event) {
|
||||
if(convo)
|
||||
board = self.chatElems.convobar.holder[convo].group;
|
||||
if (!board) board = "overchan.random";
|
||||
console.log(board);
|
||||
var subject = self.chatElems.input.subject.value;
|
||||
self.readImage(inputElem.file, function(fdata, fname, ftype) {
|
||||
if (fdata) {
|
||||
@ -1006,7 +1007,7 @@ Chat.prototype.sendInput = function(event) {
|
||||
subject: subject,
|
||||
name: name,
|
||||
reference: convo,
|
||||
board: board,
|
||||
newsgroup: board,
|
||||
files: [{name: fname, data: fdata, type: ftype}],
|
||||
}});
|
||||
} else {
|
||||
@ -1015,7 +1016,7 @@ Chat.prototype.sendInput = function(event) {
|
||||
message: message,
|
||||
reference: convo,
|
||||
name: name,
|
||||
board: board,
|
||||
newsgroup: board,
|
||||
}});
|
||||
}
|
||||
inputElem.file.value = "";
|
||||
|
Reference in New Issue
Block a user