diff options
| author | Stephen Blott | 2015-05-06 14:41:27 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2015-05-06 14:41:29 +0100 | 
| commit | 9fdb630d891019620041041001b9dff022008ee0 (patch) | |
| tree | fe7b835eb6faca789ff78e7298fac808ff507ea3 /background_scripts/main.coffee | |
| parent | 59dd7efed7eb40585f5b00ace516652e8ede57df (diff) | |
| download | vimium-9fdb630d891019620041041001b9dff022008ee0.tar.bz2 | |
Reinject content scripts into ALL frames.
Fixes #1628.
Thanks go to @gdh1995.
Diffstat (limited to 'background_scripts/main.coffee')
| -rw-r--r-- | background_scripts/main.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee index ffed4d2d..dc87ac54 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -16,7 +16,7 @@ chrome.runtime.onInstalled.addListener ({ reason }) ->      for tab in tabs        for [ func, files ] in jobs          for file in files -          func tab.id, { file: file, allFrames: contentScripts.allFrames }, checkLastRuntimeError +          func tab.id, { file: file, allFrames: contentScripts.all_frames }, checkLastRuntimeError  currentVersion = Utils.getCurrentVersion()  tabQueue = {} # windowId -> Array  | 
