lint compliance
parent
5d18dcc8ba
commit
45d37acc84
|
@ -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;
|
||||
|
|
|
@ -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 <b>' + teamName + '</b>';
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue