aboutsummaryrefslogtreecommitdiffstats
path: root/lib/handler_stack.coffee
diff options
context:
space:
mode:
authormrmr19932017-10-25 16:45:45 +0100
committermrmr19932017-10-25 16:51:46 +0100
commitaca953e06a7cf5aa6906df677a8fb6ed3e688a03 (patch)
treef207a026e1e8e97b718aaec98f3e8f7b530af9cf /lib/handler_stack.coffee
parent03569d64b445780576f960d0553dc763c807de95 (diff)
downloadvimium-aca953e06a7cf5aa6906df677a8fb6ed3e688a03.tar.bz2
FF: Share |root| global proxy, re-add the globals to window on DOMLoad
This is a workaround for Firefox bug 1408996.
Diffstat (limited to 'lib/handler_stack.coffee')
-rw-r--r--lib/handler_stack.coffee3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/handler_stack.coffee b/lib/handler_stack.coffee
index 806b707f..2439f55c 100644
--- a/lib/handler_stack.coffee
+++ b/lib/handler_stack.coffee
@@ -1,4 +1,4 @@
-root = exports ? window
+root = exports ? (window.root ?= {})
class HandlerStack
constructor: ->
@@ -120,3 +120,4 @@ class HandlerStack
root.HandlerStack = HandlerStack
root.handlerStack = new HandlerStack()
+extend window, root unless exports?