summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-07 04:55:10 -0500
committerMatt A. Tobin <email@mattatobin.com>2020-02-07 04:55:10 -0500
commit16cbae7e25823dbdaf991429c4e7139f3dc53639 (patch)
tree98b5e2b4a8c4e89c40c3642626656042f38bcfd0 /toolkit
parentb2fadac9cf8ce25a923369d35d28d752239ac69a (diff)
downloaduxp-16cbae7e25823dbdaf991429c4e7139f3dc53639.tar.gz
Issue mcp-graveyard/UXP#65 - Don't split in the middle of assignment statements in createProfileWizard.js
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/profile/content/createProfileWizard.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/toolkit/profile/content/createProfileWizard.js b/toolkit/profile/content/createProfileWizard.js
index f13eb8faa5..aa87eacd71 100644
--- a/toolkit/profile/content/createProfileWizard.js
+++ b/toolkit/profile/content/createProfileWizard.js
@@ -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;
}