diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-06-02 16:56:28 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-06-02 16:59:24 +1000 |
commit | 6d7b94daa6e940fd1f95ead45b9a247670d22d54 (patch) | |
tree | f39522d54dc6a307e2d1cca6ac30a198d02f93b9 /vimperator/content/config.js | |
parent | 95dffaf95a3653e55a34e090b800f9a79e9a8fd5 (diff) | |
download | pentadactyl-6d7b94daa6e940fd1f95ead45b9a247670d22d54.tar.gz |
Add missing semicolons.
Diffstat (limited to 'vimperator/content/config.js')
-rw-r--r-- | vimperator/content/config.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vimperator/content/config.js b/vimperator/content/config.js index 678f6993..d8016b51 100644 --- a/vimperator/content/config.js +++ b/vimperator/content/config.js @@ -131,13 +131,13 @@ const config = { //{{{ "<Return>": modes.NORMAL | modes.INSERT, "<Space>": modes.NORMAL | modes.INSERT, "<Up>": modes.NORMAL | modes.INSERT, - "<Down>": modes.NORMAL | modes.INSERT, - } + "<Down>": modes.NORMAL | modes.INSERT + }; }, scripts: [ "bookmarks.js", - "tabs.js", + "tabs.js" ], init: function () @@ -369,8 +369,8 @@ const config = { //{{{ "Redraw the screen", function () { - let wu = window.QueryInterface(Ci.nsIInterfaceRequestor). - getInterface(Ci.nsIDOMWindowUtils); + let wu = window.QueryInterface(Ci.nsIInterfaceRequestor) + .getInterface(Ci.nsIDOMWindowUtils); wu.redraw(); modes.show(); }, |