diff options
| author | Stephen Blott | 2015-06-05 07:27:51 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-06-05 07:27:51 +0100 |
| commit | fc4cfc478346c2b2769420d47ae00bdbc756a02a (patch) | |
| tree | 916fd51f4cb40991786917e54fb79467d273d0d6 /background_scripts/main.coffee | |
| parent | b5f4f1ab1f237795ed522f338dde2aa87bb35f42 (diff) | |
| parent | 83fc0e58f6139ff5a1ae37fc300ea647da079171 (diff) | |
| download | vimium-fc4cfc478346c2b2769420d47ae00bdbc756a02a.tar.bz2 | |
Merge pull request #1716 from smblott-github/global-marks
Improved global marks
Diffstat (limited to 'background_scripts/main.coffee')
| -rw-r--r-- | background_scripts/main.coffee | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee index 980f8e18..cbb70c6c 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -35,7 +35,8 @@ namedKeyRegex = /^(<(?:[amc]-.|(?:[amc]-)?[a-z0-9]{2,5})>)(.*)$/ # Event handlers selectionChangedHandlers = [] -tabLoadedHandlers = {} # tabId -> function() +# Note. tabLoadedHandlers handlers is exported for use also by "marks.coffee". +root.tabLoadedHandlers = {} # tabId -> function() # A secret, available only within the current instantiation of Vimium. The secret is big, likely unguessable # in practice, but less than 2^31. |
