Add comments to websocket handlers
This commit is contained in:
parent
1da061fec2
commit
a49ce938ea
|
@ -296,23 +296,28 @@ weechat.factory('connection',
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
var onclose = function () {
|
var onclose = function () {
|
||||||
|
/*
|
||||||
|
* Handles websocket disconnection
|
||||||
|
*/
|
||||||
$log.info("Disconnected from relay");
|
$log.info("Disconnected from relay");
|
||||||
$rootScope.connected = false;
|
|
||||||
failCallbacks('disconnection');
|
failCallbacks('disconnection');
|
||||||
|
$rootScope.connected = false;
|
||||||
$rootScope.$apply();
|
$rootScope.$apply();
|
||||||
};
|
};
|
||||||
|
|
||||||
var onerror = function (evt) {
|
var onerror = function (evt) {
|
||||||
// on error it means the connection problem
|
/*
|
||||||
// come from the relay not from the password.
|
* Handles cases when connection issues come from
|
||||||
|
* the relay.
|
||||||
|
*/
|
||||||
|
$log.error("Relay error" + evt.data);
|
||||||
|
|
||||||
if (evt.type === "error" && this.readyState !== 1) {
|
if (evt.type === "error" && this.readyState !== 1) {
|
||||||
failCallbacks('error');
|
failCallbacks('error');
|
||||||
$rootScope.errorMessage = true;
|
$rootScope.errorMessage = true;
|
||||||
}
|
}
|
||||||
$log.error("Relay error " + evt.data);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
protocol.setId = function(id, message) {
|
protocol.setId = function(id, message) {
|
||||||
|
|
Loading…
Reference in New Issue