added on succeess event
This commit is contained in:
parent
828d975b2d
commit
ec9ae0cbd6
1
main.js
1
main.js
@ -60,6 +60,7 @@ SpiceMainConn.prototype.process_channel_message = function(msg)
|
||||
if (msg.type == SPICE_MSG_MAIN_INIT)
|
||||
{
|
||||
this.log_info("Connected to " + this.ws.url);
|
||||
this.report_success("Connected")
|
||||
this.main_init = new SpiceMsgMainInit(msg.data);
|
||||
this.connection_id = this.main_init.session_id;
|
||||
|
||||
|
@ -55,6 +55,8 @@ function SpiceConn(o)
|
||||
this.password = o.password;
|
||||
if (o.onerror !== undefined)
|
||||
this.onerror = o.onerror;
|
||||
if (o.onsuccess !== undefined)
|
||||
this.onsuccess = o.onsuccess;
|
||||
|
||||
this.state = "connecting";
|
||||
this.ws.parent = this;
|
||||
@ -420,6 +422,12 @@ SpiceConn.prototype =
|
||||
throw(e);
|
||||
},
|
||||
|
||||
report_success: function(m)
|
||||
{
|
||||
if (this.onsuccess != undefined)
|
||||
this.onsuccess(m);
|
||||
},
|
||||
|
||||
cleanup: function()
|
||||
{
|
||||
if (this.timeout)
|
||||
|
Loading…
Reference in New Issue
Block a user