lint compliance
This commit is contained in:
@@ -407,7 +407,7 @@ define([
|
||||
});
|
||||
|
||||
sframeChan.on('Q_CONTACTS_OPEN_FRIEND_CHANNEL', function (curvePublic, cb) {
|
||||
messenger.openFriendChannel(curvePublic, function (e, data) {
|
||||
messenger.openFriendChannel(curvePublic, function (e) {
|
||||
cb({ error: e, });
|
||||
});
|
||||
});
|
||||
|
||||
@@ -27,7 +27,7 @@ define([], function () {
|
||||
sFrameChan.on('EV_CONTACTS_JOIN', function (err, data) {
|
||||
if (err || data.error) { return void console.error(err || data.error); }
|
||||
_handlers.join.forEach(function (f) {
|
||||
f(data.curvePublic, data.channel)
|
||||
f(data.curvePublic, data.channel);
|
||||
});
|
||||
});
|
||||
sFrameChan.on('EV_CONTACTS_LEAVE', function (err, data) {
|
||||
|
||||
Reference in New Issue
Block a user