upd: vue.container.event (fix message send)

This commit is contained in:
xdrm-brackets 2017-12-07 20:04:55 +01:00
parent 978d920fec
commit 9a9af7373e
1 changed files with 11 additions and 3 deletions

View File

@ -27,11 +27,19 @@ export default {
methods: { methods: {
new_message(msg){ new_message(msg){
// {1} Send message // /* (1) If empty message -> abort */
this.gstore.func.sendMessage(this.gstore.new_msg.event, wsc_event); if( msg.trim().length == 0 )
return;
// {2} Empty input // /* (2) Send message to WebSocket */
wsc_event.send(JSON.stringify({message: msg, location: [1.1, 2.2]}));
/* (3) Add loader */
gstore.data.msg_pending.event = true;
/* (4) Empty input */
this.gstore.new_msg.event = ''; this.gstore.new_msg.event = '';
}, },
bbcode: function(msg){ bbcode: function(msg){