From 77b11adbdbc9fc23d8699f3e433214138ea02ac6 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Sun, 5 Apr 2009 00:26:47 +0100 Subject: [PATCH] Don't showtext for input type=submit --- common/content/hints.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/hints.js b/common/content/hints.js index 1cb8e72b..186a3380 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -155,7 +155,7 @@ function Hints() //{{{ let type = elem.type ? elem.type.toLowerCase() : ""; if (tagname == "input" && (type == "submit" || type == "button" || type == "reset")) - return [elem.value, true] + return [elem.value, false] else { for each (let option in options["hintinputs"].split(","))