lint compliance

pull/1/head
ansuz 7 years ago
parent 2e0aa185cd
commit 756b561bbc

@ -2,9 +2,9 @@ define([
'jquery', 'jquery',
'/common/cryptpad-common.js', '/common/cryptpad-common.js',
'/bower_components/chainpad-listmap/chainpad-listmap.js', '/bower_components/chainpad-listmap/chainpad-listmap.js',
'/common/curve.js', //'/common/curve.js',
'less!/invite/main.less', 'less!/invite/main.less',
], function ($, Cryptpad, Listmap, Curve) { ], function ($, Cryptpad /*, Listmap, Curve*/) {
var Messages = Cryptpad.Messages; var Messages = Cryptpad.Messages;
var comingSoon = function () { var comingSoon = function () {
return $('<div>', { return $('<div>', {
@ -21,6 +21,7 @@ define([
}); });
return; return;
/* jshint ignore:start */
var APP = window.APP = {}; var APP = window.APP = {};
//var Messages = Cryptpad.Messages; //var Messages = Cryptpad.Messages;
@ -99,4 +100,5 @@ define([
andThen(); andThen();
}); });
}); });
/* jshint ignore:end */
}); });

@ -82,7 +82,7 @@ define([
var CREATE_ID = "createProfile"; var CREATE_ID = "createProfile";
var HEADER_ID = "header"; var HEADER_ID = "header";
var HEADER_RIGHT_ID = "rightside"; var HEADER_RIGHT_ID = "rightside";
var CREATE_INVITE_BUTTON = 'inviteButton'; var CREATE_INVITE_BUTTON = 'inviteButton'; /* jshint ignore: line */
var VIEW_PROFILE_BUTTON = 'viewProfileButton'; var VIEW_PROFILE_BUTTON = 'viewProfileButton';
var createEditableInput = function ($block, name, ph, getValue, setValue, realtime, fallbackValue) { var createEditableInput = function ($block, name, ph, getValue, setValue, realtime, fallbackValue) {
@ -158,6 +158,7 @@ define([
}; };
*/ */
/* jshint ignore:start */
var isFriend = function (proxy, edKey) { var isFriend = function (proxy, edKey) {
var friends = Cryptpad.find(proxy, ['friends']); var friends = Cryptpad.find(proxy, ['friends']);
return typeof(edKey) === 'string' && friends && (edKey in friends); return typeof(edKey) === 'string' && friends && (edKey in friends);
@ -205,6 +206,7 @@ define([
}) })
.appendTo($container); .appendTo($container);
}; };
/* jshint ignore:end */
var addViewButton = function ($container) { var addViewButton = function ($container) {
if (!Cryptpad.isLoggedIn() || window.location.hash) { if (!Cryptpad.isLoggedIn() || window.location.hash) {
@ -239,7 +241,7 @@ define([
$span.text(value || Messages.anonymous); $span.text(value || Messages.anonymous);
}); });
addCreateInviteLinkButton($block); //addCreateInviteLinkButton($block);
return; return;
} }
var setValue = function (value, cb) { var setValue = function (value, cb) {

Loading…
Cancel
Save