1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-01 11:23:33 +02:00

Fix stupid error thrown on FF36 when trying to delete a nonexistent attribute from a DOM object.

This commit is contained in:
Kris Maglione
2011-01-27 22:17:34 -05:00
parent d16c0b0d06
commit d7fbddd945

View File

@@ -992,6 +992,7 @@ var Events = Module("events", {
*/ */
input: function onInput(event) { input: function onInput(event) {
if (event.originalTarget.dactylKeyPress)
delete event.originalTarget.dactylKeyPress; delete event.originalTarget.dactylKeyPress;
}, },