some code-changes to align with the coding standard
This commit is contained in:
parent
7660dbfb31
commit
bf3e6f2363
@ -116,7 +116,7 @@
|
||||
});
|
||||
},
|
||||
|
||||
createFileMessageStanza(message, to){
|
||||
createFileMessageStanza (message, to) {
|
||||
const stanza = $msg({
|
||||
'from': _converse.connection.jid,
|
||||
'to': to,
|
||||
|
@ -255,7 +255,7 @@
|
||||
'click .toggle-smiley': 'toggleEmojiMenu',
|
||||
'click .toggle-spoiler': 'toggleSpoilerMessage',
|
||||
'click .toggle-compose-spoiler': 'toggleComposeSpoilerMessage',
|
||||
'keypress .chat-textarea': 'keyPressed',
|
||||
'keypress .chat-textarea': 'keyPressed'
|
||||
},
|
||||
|
||||
initialize () {
|
||||
@ -829,7 +829,7 @@
|
||||
// TODO: We might want to send to specfic resources.
|
||||
// Especially in the OTR case.
|
||||
var messageStanza;
|
||||
if(file !== null){
|
||||
if (file !== null) {
|
||||
messageStanza = this.createFileMessageStanza(message, this.model.get('jid'));
|
||||
}
|
||||
else {
|
||||
@ -845,7 +845,7 @@
|
||||
'xmns': Strophe.NS.DELAY,
|
||||
'stamp': moment().format()
|
||||
}).up()
|
||||
.cnode(message.tree())
|
||||
.cnode(messageStanza.tree())
|
||||
);
|
||||
}
|
||||
},
|
||||
@ -890,7 +890,6 @@
|
||||
}
|
||||
const attrs = this.getOutgoingMessageAttributes(text, spoiler_hint);
|
||||
const message = this.model.messages.create(attrs);
|
||||
|
||||
this.sendMessage(message, file);
|
||||
},
|
||||
|
||||
|
@ -835,7 +835,7 @@
|
||||
* Parameters:
|
||||
* (String) text - The message text.
|
||||
*/
|
||||
if(file !== null){
|
||||
if (file !== null) {
|
||||
return this.model.sendChatRoomFile(text,this.model.get('jid'));
|
||||
}
|
||||
if (_converse.muc_disable_moderator_commands) {
|
||||
|
Loading…
Reference in New Issue
Block a user