1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-26 21:42:26 +01:00

Ignore disabled elements in gi.

This commit is contained in:
Kris Maglione
2014-06-01 15:22:54 -07:00
parent cc19bbfef6
commit fdf188166d

View File

@@ -2290,7 +2290,7 @@ var Buffer = Module("Buffer", {
elem = DOM(elem);
if (elem[0].readOnly || !DOM(elem).isEditable)
if (elem[0].readOnly || elem[0].disabled || !DOM(elem).isEditable)
return false;
let style = elem.style;