diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-07 04:55:10 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-02-07 04:55:10 -0500 |
commit | 16cbae7e25823dbdaf991429c4e7139f3dc53639 (patch) | |
tree | 98b5e2b4a8c4e89c40c3642626656042f38bcfd0 /toolkit | |
parent | b2fadac9cf8ce25a923369d35d28d752239ac69a (diff) | |
download | uxp-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.js | 5 |
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; } |