diff options
| author | Phil Crosby | 2016-05-09 00:24:34 -0700 |
|---|---|---|
| committer | Phil Crosby | 2016-05-09 00:24:34 -0700 |
| commit | 25587a5ae039dc8a1f57a441195b0b93dc8a3475 (patch) | |
| tree | f33a2ffdffd17e22112aa130e20742e0d4b06d17 | |
| parent | d00cc696c8e43b1b0298bce61fa18e22d78f270d (diff) | |
| download | vimium-25587a5ae039dc8a1f57a441195b0b93dc8a3475.tar.bz2 | |
Add a comment
| -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 76fbcd96..929d5537 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -303,7 +303,7 @@ Frames = unregisterFrame: ({tabId, frameId}) -> # FrameId 0 is the top/main frame. We never unregister that frame. If the tab is closing, then we tidy # up elsewhere. If the tab is navigating to a new page, then a new top frame will be along soon. - # This mitigates against the unregister and register messages arriving in the "wrong" order. + # This mitigates against the unregister and register messages arriving out of order. See #2125. if 0 < frameId if tabId of frameIdsForTab frameIdsForTab[tabId] = (fId for fId in frameIdsForTab[tabId] when fId != frameId) |
