upd: vue.container.event (fix message send)
This commit is contained in:
parent
978d920fec
commit
9a9af7373e
|
@ -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){
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue