summaryrefslogtreecommitdiffstats
path: root/toolkit/profile/content/profileSelection.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-05 13:52:28 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:37:02 +0200
commit62f39d829dbc630ab287545442ef9a339d2b8fb1 (patch)
treec8b63df6a40e5c3f0442c5f3608ee8c5a8d85e35 /toolkit/profile/content/profileSelection.js
parent28971524e4d4832e5c92276cc989535e75f04acc (diff)
downloadUXP-62f39d829dbc630ab287545442ef9a339d2b8fb1.tar
UXP-62f39d829dbc630ab287545442ef9a339d2b8fb1.tar.gz
UXP-62f39d829dbc630ab287545442ef9a339d2b8fb1.tar.lz
UXP-62f39d829dbc630ab287545442ef9a339d2b8fb1.tar.xz
UXP-62f39d829dbc630ab287545442ef9a339d2b8fb1.zip
Issue #65 - Remove AppConstants from toolkit/profile
Diffstat (limited to 'toolkit/profile/content/profileSelection.js')
-rw-r--r--toolkit/profile/content/profileSelection.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/profile/content/profileSelection.js b/toolkit/profile/content/profileSelection.js
index 02b9d6873..65a2ba13f 100644
--- a/toolkit/profile/content/profileSelection.js
+++ b/toolkit/profile/content/profileSelection.js
@@ -4,7 +4,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-Components.utils.import("resource://gre/modules/AppConstants.jsm");
Components.utils.import("resource://gre/modules/Services.jsm");
const C = Components.classes;
@@ -134,9 +133,10 @@ function onProfilesKey(aEvent)
{
switch ( aEvent.keyCode )
{
+#ifndef XP_MACOSX
case KeyEvent.DOM_VK_BACK_SPACE:
- if (AppConstants.platform != "macosx")
- break;
+ break;
+#endif
case KeyEvent.DOM_VK_DELETE:
ConfirmDelete();
break;