diff --git a/www/invite/main.js b/www/invite/main.js
index 7f216892c..21d084757 100644
--- a/www/invite/main.js
+++ b/www/invite/main.js
@@ -2,9 +2,9 @@ define([
'jquery',
'/common/cryptpad-common.js',
'/bower_components/chainpad-listmap/chainpad-listmap.js',
- '/common/curve.js',
+ //'/common/curve.js',
'less!/invite/main.less',
-], function ($, Cryptpad, Listmap, Curve) {
+], function ($, Cryptpad /*, Listmap, Curve*/) {
var Messages = Cryptpad.Messages;
var comingSoon = function () {
return $('
', {
@@ -21,6 +21,7 @@ define([
});
return;
+ /* jshint ignore:start */
var APP = window.APP = {};
//var Messages = Cryptpad.Messages;
@@ -99,4 +100,5 @@ define([
andThen();
});
});
+ /* jshint ignore:end */
});
diff --git a/www/profile/main.js b/www/profile/main.js
index 364b6ea87..4c9274d90 100644
--- a/www/profile/main.js
+++ b/www/profile/main.js
@@ -82,7 +82,7 @@ define([
var CREATE_ID = "createProfile";
var HEADER_ID = "header";
var HEADER_RIGHT_ID = "rightside";
- var CREATE_INVITE_BUTTON = 'inviteButton';
+ var CREATE_INVITE_BUTTON = 'inviteButton'; /* jshint ignore: line */
var VIEW_PROFILE_BUTTON = 'viewProfileButton';
var createEditableInput = function ($block, name, ph, getValue, setValue, realtime, fallbackValue) {
@@ -158,6 +158,7 @@ define([
};
*/
+/* jshint ignore:start */
var isFriend = function (proxy, edKey) {
var friends = Cryptpad.find(proxy, ['friends']);
return typeof(edKey) === 'string' && friends && (edKey in friends);
@@ -205,6 +206,7 @@ define([
})
.appendTo($container);
};
+ /* jshint ignore:end */
var addViewButton = function ($container) {
if (!Cryptpad.isLoggedIn() || window.location.hash) {
@@ -239,7 +241,7 @@ define([
$span.text(value || Messages.anonymous);
});
- addCreateInviteLinkButton($block);
+ //addCreateInviteLinkButton($block);
return;
}
var setValue = function (value, cb) {