diff options
| author | Aaron Hall | 2012-07-15 13:49:52 -0700 |
|---|---|---|
| committer | Aaron Hall | 2012-07-15 13:49:52 -0700 |
| commit | efa9d382b6f44478f4f7d8dc44ddd71812f52e7c (patch) | |
| tree | a47d07d50289d62789a2629fc00a7313616e6bd5 | |
| parent | a88daf3f67ce3c58d2bdfe41675e1128ed6b733d (diff) | |
| download | vimium-efa9d382b6f44478f4f7d8dc44ddd71812f52e7c.tar.bz2 | |
Close omnibar when enter is pressed (#585)
| -rw-r--r-- | content_scripts/vomnibar.coffee | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content_scripts/vomnibar.coffee b/content_scripts/vomnibar.coffee index bb95a407..ac02dfca 100644 --- a/content_scripts/vomnibar.coffee +++ b/content_scripts/vomnibar.coffee @@ -109,6 +109,7 @@ class VomnibarUI # google. if (@selection == -1) query = @input.value.trim() + @hide() chrome.extension.sendRequest({ handler: if openInNewTab then "openUrlInNewTab" else "openUrlInCurrentTab" url: query }) |
