diff options
| author | Ilya Sukhar | 2010-12-14 01:59:51 -0800 | 
|---|---|---|
| committer | Ilya Sukhar | 2010-12-14 01:59:51 -0800 | 
| commit | 031b3453f1f34df0a6b3bc83d5e920d869b329e9 (patch) | |
| tree | a788c33a0755b8d2f89d89822e724dfda267242b | |
| parent | b658a81acdf8b789cae1c464c2a4fbad5dbf7928 (diff) | |
| download | vimium-031b3453f1f34df0a6b3bc83d5e920d869b329e9.tar.bz2 | |
Fixed a regression with completion key logic after the introduction of frame support. Closes #249.
| -rw-r--r-- | background_page.html | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/background_page.html b/background_page.html index ad15c2be..264cf299 100644 --- a/background_page.html +++ b/background_page.html @@ -552,7 +552,7 @@        // The second key might be a valid command by its self.        if (keyToCommandRegistry[splitKey.second]) -        newKeyQueue = checkKeyQueue(splitKey.second); +        newKeyQueue = checkKeyQueue(splitKey.second, tabId, frameId);        else          newKeyQueue = (validFirstKeys[splitKey.second] ? splitKey.second : "");      } else { | 
