diff options
author | teramako | 2008-04-07 03:40:45 +0000 |
---|---|---|
committer | teramako | 2008-04-07 03:40:45 +0000 |
commit | f7ac591b97db112cdff08c8b7a152aaccfcb4294 (patch) | |
tree | e97e721cd44453c099f95d0e24b54c0d5f7d2649 /gmperator.js | |
parent | 02f058df403b6d776bbbf8ded7b20ecbab99113e (diff) | |
download | vimperator-plugins-f7ac591b97db112cdff08c8b7a152aaccfcb4294.tar.bz2 |
lang/javascript/vimperator-plugins/trunk/gmperator.js : bug fix
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@9065 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'gmperator.js')
-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; }, |