1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 11:58:00 +01:00

Don't showtext for input type=submit

This commit is contained in:
Conrad Irwin
2009-04-05 00:26:47 +01:00
parent 7fc5d0b175
commit 77b11adbdb

View File

@@ -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(","))