summaryrefslogtreecommitdiffstats
path: root/toolkit/profile
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
commitfa52fa60b70c5883acd4a8edd8e1f89c3d5f3920 (patch)
tree98b5e2b4a8c4e89c40c3642626656042f38bcfd0 /toolkit/profile
parentb4ac6a7dcb9ce4449c0dc1afc30d4aaee74c9a6a (diff)
downloadUXP-fa52fa60b70c5883acd4a8edd8e1f89c3d5f3920.tar
UXP-fa52fa60b70c5883acd4a8edd8e1f89c3d5f3920.tar.gz
UXP-fa52fa60b70c5883acd4a8edd8e1f89c3d5f3920.tar.lz
UXP-fa52fa60b70c5883acd4a8edd8e1f89c3d5f3920.tar.xz
UXP-fa52fa60b70c5883acd4a8edd8e1f89c3d5f3920.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;
}