diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-01-15 19:17:24 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-01-15 19:17:24 -0500 |
commit | 7d178cfb346287d785a7e1dd462c092e5b2bbd80 (patch) | |
tree | d3aed40b9c964253d9599f710c31facad16ad178 /common/content/buffer.js | |
parent | eacd52dffb88482a493dd98c29a5a092c8dd6227 (diff) | |
download | pentadactyl-7d178cfb346287d785a7e1dd462c092e5b2bbd80.tar.gz |
Add file input editing history.
Diffstat (limited to 'common/content/buffer.js')
-rw-r--r-- | common/content/buffer.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/content/buffer.js b/common/content/buffer.js index 4ee88ba2..c06017b1 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -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" }); } }, { |