lint compliance

This commit is contained in:
ansuz 2019-08-30 16:09:38 +02:00
parent 1ab4fd7952
commit ecdb1505e2
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ define([
var doesAccept = $checkAcceptTerms[0].checked;
if (Cred.isEmail(uname) && !I_REALLY_WANT_TO_USE_MY_EMAIL_FOR_MY_USERNAME) {
var warning = [
var emailWarning = [
Messages.register_emailWarning0,
Messages.register_emailWarning1,
Messages.register_emailWarning2,
@ -74,7 +74,7 @@ define([
Feedback.send("EMAIL_USERNAME_WARNING", true);
return void UI.confirm(warning, function (yes) {
return void UI.confirm(emailWarning, function (yes) {
if (!yes) { return; }
I_REALLY_WANT_TO_USE_MY_EMAIL_FOR_MY_USERNAME = true;
registerClick();