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 | fa52fa60b70c5883acd4a8edd8e1f89c3d5f3920 (patch) | |
tree | 98b5e2b4a8c4e89c40c3642626656042f38bcfd0 /toolkit/profile | |
parent | b4ac6a7dcb9ce4449c0dc1afc30d4aaee74c9a6a (diff) | |
download | uxp-fa52fa60b70c5883acd4a8edd8e1f89c3d5f3920.tar.gz |
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.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; } |