diff options
| author | ilya | 2012-07-06 23:48:17 -0700 | 
|---|---|---|
| committer | ilya | 2012-07-06 23:48:17 -0700 | 
| commit | 680ca8fbd34a51f854302537c3b09ffd60edbe93 (patch) | |
| tree | e376e924c083ea5e2048311165cd8f748399a8e8 /content_scripts | |
| parent | ed21d9b1abe42c1556f27390476302a1393dedb8 (diff) | |
| download | vimium-680ca8fbd34a51f854302537c3b09ffd60edbe93.tar.bz2 | |
Bookmarks mode in Vomnibar
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/vomnibar.coffee | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/content_scripts/vomnibar.coffee b/content_scripts/vomnibar.coffee index df9d89b9..30615433 100644 --- a/content_scripts/vomnibar.coffee +++ b/content_scripts/vomnibar.coffee @@ -24,6 +24,7 @@ Vomnibar =    activate: -> @activateWithCompleter("omni", 100)    activateWithCurrentUrl: -> @activateWithCompleter("omni", 100, window.location.toString())    activateTabSelection: -> @activateWithCompleter("tabs", 0) +  activateBookmarks: -> @activateWithCompleter("bookmarks", 0)    getUI: -> @vomnibarUI @@ -210,4 +211,4 @@ extend BackgroundCompleter,      switchToTab: (tabId) -> chrome.extension.sendRequest({ handler: "selectSpecificTab", id: tabId })  root = exports ? window -root.Vomnibar = Vomnibar
\ No newline at end of file +root.Vomnibar = Vomnibar | 
