1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 02:17:59 +01:00

change remaining uses of the Array() constructor in array initializations to

literals
This commit is contained in:
Doug Kearns
2007-08-11 12:46:13 +00:00
parent 101bcf025e
commit 5b6b78d815
6 changed files with 13 additions and 13 deletions

View File

@@ -78,7 +78,7 @@ function Events() //{{{
// TODO: use this table also for KeyboardEvent.prototype.toString
var keyTable = [
[ KeyEvent.DOM_VK_ESCAPE, ["Esc", "Escape"] ],
[ KeyEvent.DOM_VK_ESCAPE, ["Esc", "Escape"] ],
[ KeyEvent.DOM_VK_LEFT_SHIFT, ["<"] ],
[ KeyEvent.DOM_VK_RIGHT_SHIFT, [">"] ],
[ KeyEvent.DOM_VK_RETURN, ["Return", "CR", "Enter"] ],
@@ -207,7 +207,7 @@ function Events() //{{{
}
// This method pushes keys into the event queue from vimperator
// it is similar to vim's feedkeys() method, but cannot cope with
// it is similar to vim's feedkeys() method, but cannot cope with
// 2 partially feeded strings, you have to feed one parsable string
//
// @param keys: a string like "2<C-f>" to pass