From 822d78be1bac36d7387d24214b9b808988f328b8 Mon Sep 17 00:00:00 2001 From: AlexVallat Date: Thu, 26 Mar 2015 21:11:54 +0000 Subject: [PATCH] More restrictive monitoring. Probably doesn't make a difference, but at least theoretically more efficient. --- platform/firefox/frameModule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/firefox/frameModule.js b/platform/firefox/frameModule.js index 78915ca..5b90d5d 100644 --- a/platform/firefox/frameModule.js +++ b/platform/firefox/frameModule.js @@ -317,7 +317,7 @@ const LocationChangeListener = function(docShell) { this.messageManager = docShell.getInterface(Ci.nsIContentFrameMessageManager); if (this.messageManager && typeof this.messageManager.sendAsyncMessage === 'function') { - this.docShell.addProgressListener(this, Ci.nsIWebProgress.NOTIFY_ALL); + this.docShell.addProgressListener(this, Ci.nsIWebProgress.NOTIFY_LOCATION); } } }