commit e119e5bf0d8e33db98d3dceb15be34958300dceb
parent 7474b31e96645b688fa45b4fe8ab7a4a0bc659f7
Author: Dan Stillman <dstillman@zotero.org>
Date: Wed, 3 Feb 2016 01:20:11 -0500
Extra logging for waitForWindow() support function
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/test/content/support.js b/test/content/support.js
@@ -97,6 +97,9 @@ function waitForWindow(uri, callback) {
deferred.resolve(win);
});
}
+ else {
+ Zotero.debug(`Ignoring window ${uri} in waitForWindow()`);
+ }
};
var winobserver = {"observe":function(subject, topic, data) {
if(topic != "domwindowopened") return;