Issue #65 - Don't split in the middle of assignment statements in createProfileWizard.js

This commit is contained in:
Matt A. Tobin 2020-02-07 04:55:10 -05:00 committed by Roy Tam
commit 65b6f50bf4

View file

@ -116,11 +116,10 @@ function checkCurrentInput(currentInput)
if (!errorMessage) {
finishText.className = "";
finishText.firstChild.data = gProfileManagerBundle
#ifdef XP_MACOSX
.getString("profileFinishTextMac");
finishText.firstChild.data = gProfileManagerBundle.getString("profileFinishTextMac");
#else
.getString("profileFinishText");
finishText.firstChild.data = gProfileManagerBundle.getString("profileFinishText");
#endif
canAdvance = true;
}