summaryrefslogtreecommitdiff
path: root/common/content/buffer.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2011-01-15 19:17:24 -0500
committerKris Maglione <maglione.k@gmail.com>2011-01-15 19:17:24 -0500
commit7d178cfb346287d785a7e1dd462c092e5b2bbd80 (patch)
treed3aed40b9c964253d9599f710c31facad16ad178 /common/content/buffer.js
parenteacd52dffb88482a493dd98c29a5a092c8dd6227 (diff)
downloadpentadactyl-7d178cfb346287d785a7e1dd462c092e5b2bbd80.tar.gz
Add file input editing history.
Diffstat (limited to 'common/content/buffer.js')
-rw-r--r--common/content/buffer.js3
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"
});
}
}, {