commit 3c52b422fa2c658a46efcdfe429030b0c1b378ca parent b3ab9a96dcb7e35b5cd58d593049fc5b8aa1d3ae Author: Simon Kornblith <simon@simonster.com> Date: Wed, 7 Nov 2012 15:15:56 -0500 Fix missing parens Diffstat:
| M | chrome/content/zotero/xpcom/zotero.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js @@ -2429,7 +2429,7 @@ Zotero.Browser = new function() { } function deleteHiddenBrowser(myBrowsers) { - if(!myBrowsers instanceof Array) myBrowsers = [myBrowsers]; + if(!(myBrowsers instanceof Array)) myBrowsers = [myBrowsers]; for(var i=0; i<myBrowsers.length; i++) { var myBrowser = myBrowsers[i]; myBrowser.stop();