From 2c109025bf2f6edced1724046d1a0ff1fea74c8d Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 22 Feb 2011 20:44:51 -0500 Subject: [PATCH] Fix typo in events.toString. --- common/content/events.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/events.js b/common/content/events.js index 780233b2..b2e65fe9 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -922,9 +922,9 @@ var Events = Module("events", { modifier += "S-"; else if (!modifier && key.length === 1) if (event.shiftKey) - key = key.toLowerCase(); - else key = key.toUpperCase(); + else + key = key.toLowerCase(); if (!modifier && /^[a-z0-9]$/i.test(key)) return key; }