diff options
| author | Maksim Ryzhikov | 2013-09-12 15:26:50 +0400 |
|---|---|---|
| committer | Maksim Ryzhikov | 2013-09-12 15:26:50 +0400 |
| commit | 9278d262c56301e997ccb214814543f64c7ba30b (patch) | |
| tree | ba4902e0c52e01ba915290d0a3319153d98ce3e8 /pages | |
| parent | 2030c2b74fba975373a9d1841f2ca5a7feadff17 (diff) | |
| download | vimium-9278d262c56301e997ccb214814543f64c7ba30b.tar.bz2 | |
Changed deprecated chrome.extension on chrome.runtime in all files and fix tests
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/popup.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/popup.coffee b/pages/popup.coffee index 0bac6ca7..6d7afafc 100644 --- a/pages/popup.coffee +++ b/pages/popup.coffee @@ -1,5 +1,5 @@ onLoad = -> - document.getElementById("optionsLink").setAttribute "href", chrome.extension.getURL("pages/options.html") + document.getElementById("optionsLink").setAttribute "href", chrome.runtime.getURL("pages/options.html") chrome.tabs.getSelected null, (tab) -> # The common use case is to disable Vimium at the domain level. # This regexp will match "http://www.example.com/" from "http://www.example.com/path/to/page.html". |
