diff options
author | Doug Kearns <dougkearns@gmail.com> | 2011-01-11 20:24:22 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2011-01-11 20:24:22 +1100 |
commit | 1256e37286aa18282cae51ed28cff99ae3f90001 (patch) | |
tree | 6a903533e763d8561750c61bd464dc5429cf6ce3 /common/content/editor.js | |
parent | c4ab1a4070de87c3bf0aaf2172807b537537af1c (diff) | |
download | pentadactyl-1256e37286aa18282cae51ed28cff99ae3f90001.tar.gz |
Fix editor.editFieldExternally.
Broken in revision 40e49837cafd.
Diffstat (limited to 'common/content/editor.js')
-rw-r--r-- | common/content/editor.js | 2 |
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); |