summaryrefslogtreecommitdiff
path: root/common/content/buffer.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2009-05-22 13:55:22 -0400
committerKris Maglione <maglione.k@gmail.com>2009-05-22 13:55:22 -0400
commite9fc3327ed6db07212079e7646404d5afe62e724 (patch)
tree0229567d9af6d69f24dd5e2ddfe4d28f7f9a96da /common/content/buffer.js
parent491d17a4a0f8289ef7c5015a8dd4fd5a6d4028dc (diff)
downloadpentadactyl-e9fc3327ed6db07212079e7646404d5afe62e724.tar.gz
Make :undo a bit saner. Add TODO about config.name checks.
Diffstat (limited to 'common/content/buffer.js')
-rw-r--r--common/content/buffer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/buffer.js b/common/content/buffer.js
index f8d07e03..f51b6fff 100644
--- a/common/content/buffer.js
+++ b/common/content/buffer.js
@@ -1099,7 +1099,7 @@ function Buffer() //{{{
elem.contentWindow.focus();
return;
}
- else if (elemTagName == "input" && elem.type.toLowerCase() == "file")
+ else if (elemTagName == "input" && elem.type == "file")
{
openUploadPrompt(elem);
buffer.lastInputField = elem;