summaryrefslogtreecommitdiffstats
path: root/toolkit/profile
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-07 04:55:10 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:40:06 +0200
commit91be1183769f96ed17f9297522b2103e7714585d (patch)
treeb29255aa0beb4872fa01fd5a6db513d9faefb926 /toolkit/profile
parent2258e09d595c3e4171eb83cb57692e5e9d08d226 (diff)
downloadUXP-91be1183769f96ed17f9297522b2103e7714585d.tar
UXP-91be1183769f96ed17f9297522b2103e7714585d.tar.gz
UXP-91be1183769f96ed17f9297522b2103e7714585d.tar.lz
UXP-91be1183769f96ed17f9297522b2103e7714585d.tar.xz
UXP-91be1183769f96ed17f9297522b2103e7714585d.zip
Issue #65 - Don't split in the middle of assignment statements in createProfileWizard.js
Diffstat (limited to 'toolkit/profile')
-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 f13eb8faa..aa87eacd7 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;
}