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

Add file input editing history.

This commit is contained in:
Kris Maglione
2011-01-15 19:17:24 -05:00
parent eacd52dffb
commit 7d178cfb34
6 changed files with 58 additions and 30 deletions

View File

@@ -1200,7 +1200,8 @@ var Buffer = Module("buffer", {
events.dispatch(elem, events.create(elem.ownerDocument, "change", {}));
}, {
completer: function (context) completion.file(context),
default: elem.value
default: elem.value,
history: "file"
});
}
}, {