From 45d37acc8465e1af58c3617dee8775165082a0e7 Mon Sep 17 00:00:00 2001 From: yflory Date: Fri, 20 Sep 2019 17:29:21 +0200 Subject: [PATCH] lint compliance --- www/common/common-ui-elements.js | 4 +--- www/common/notifications.js | 5 +---- www/common/outer/mailbox-handlers.js | 4 ++-- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/www/common/common-ui-elements.js b/www/common/common-ui-elements.js index 3b8dac905..109363cc1 100644 --- a/www/common/common-ui-elements.js +++ b/www/common/common-ui-elements.js @@ -1176,7 +1176,6 @@ define([ UIElements.createInviteTeamModal = function (config) { var common = config.common; var hasFriends = Object.keys(config.friends || {}).length !== 0; - var friendsList = hasFriends ? createShareWithFriends(config) : undefined; if (!hasFriends) { return void UI.alert('No friend to invite'); // XXX @@ -1220,7 +1219,7 @@ define([ var sel = $sel.toArray(); if (!sel.length) { return; } - var friends = sel.forEach(function (el) { + sel.forEach(function (el) { var curve = $(el).attr('data-curve'); module.execCommand('INVITE_TO_TEAM', { teamId: config.teamId, @@ -3702,7 +3701,6 @@ define([ UIElements.displayInviteTeamModal = function (common, data) { var priv = common.getMetadataMgr().getPrivateData(); var user = common.getMetadataMgr().getUserData(); - var sframeChan = common.getSframeChannel(); var msg = data.content.msg; var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous; diff --git a/www/common/notifications.js b/www/common/notifications.js index 810e4b72f..f152e741a 100644 --- a/www/common/notifications.js +++ b/www/common/notifications.js @@ -139,9 +139,6 @@ define([ // if not archived, add handlers if (!content.archived) { content.handler = function () { - var metadataMgr = common.getMetadataMgr(); - var priv = metadataMgr.getPrivateData(); - var link = h('a', { href: '#' }, Messages.requestEdit_viewPad); @@ -281,7 +278,7 @@ define([ // Display the notification var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous; var teamName = Util.fixHTML(Util.find(msg, ['content', 'team', 'metadata', 'name']) || ''); - var key = 'owner_request_' + (msg.content.answer ? 'accepted' : 'declined'); + //var key = 'owner_request_' + (msg.content.answer ? 'accepted' : 'declined'); content.getFormatText = function () { //return Messages._getKey(key, [name, title]); // XXX return name +' has ' + (msg.content.answer ? 'accepted' : 'declined') + ' your offer to join the team ' + teamName + ''; diff --git a/www/common/outer/mailbox-handlers.js b/www/common/outer/mailbox-handlers.js index cfe6fdd29..686f474ed 100644 --- a/www/common/outer/mailbox-handlers.js +++ b/www/common/outer/mailbox-handlers.js @@ -323,7 +323,7 @@ define([ if (invitedTo[content.team.channel]) { return void cb(true); } - var myTeams = Util.find(ctx, ['store', 'proxy', 'teams']) + var myTeams = Util.find(ctx, ['store', 'proxy', 'teams']); var alreadyMember = Object.keys(myTeams).some(function (k) { var team = myTeams[k]; return team.channel === content.team.channel; @@ -349,7 +349,7 @@ define([ return void cb(true); } - var myTeams = Util.find(ctx, ['store', 'proxy', 'teams']) + var myTeams = Util.find(ctx, ['store', 'proxy', 'teams']); var teamId; var team; Object.keys(myTeams).some(function (k) {