diff options
-rw-r--r-- | gmperator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gmperator.js b/gmperator.js index a251576..945513f 100644 --- a/gmperator.js +++ b/gmperator.js @@ -123,7 +123,7 @@ liberator.plugins.gmperator = (function(){ //{{{ }, getSandboxFromWindow: function(win){ for each(var c in containers){ - if(c.sandbox.window === win) return sandbox; + if(c.sandbox.window == win) return sandbox; } return null; }, |