summaryrefslogtreecommitdiff
path: root/common/content/editor.js
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2011-01-11 20:24:22 +1100
committerDoug Kearns <dougkearns@gmail.com>2011-01-11 20:24:22 +1100
commit1256e37286aa18282cae51ed28cff99ae3f90001 (patch)
tree6a903533e763d8561750c61bd464dc5429cf6ce3 /common/content/editor.js
parentc4ab1a4070de87c3bf0aaf2172807b537537af1c (diff)
downloadpentadactyl-1256e37286aa18282cae51ed28cff99ae3f90001.tar.gz
Fix editor.editFieldExternally.
Broken in revision 40e49837cafd.
Diffstat (limited to 'common/content/editor.js')
-rw-r--r--common/content/editor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/editor.js b/common/content/editor.js
index 90baf1ed..507fb0bb 100644
--- a/common/content/editor.js
+++ b/common/content/editor.js
@@ -336,7 +336,7 @@ var Editor = Module("editor", {
throw Error("Input contains characters not valid in the current " +
"file encoding");
- let lastUpdate = Date.now();
+ var lastUpdate = Date.now();
var timer = services.Timer(update, 100, services.Timer.TYPE_REPEATING_SLACK);
this.editFileExternally({ file: tmpfile.path, line: line, column: column }, cleanup);