From 26652102a8edad72302f02438d37073c3da05f67 Mon Sep 17 00:00:00 2001 From: "dbaron%fas.harvard.edu" Date: Sat, 14 Apr 2001 21:41:15 +0000 Subject: [PATCH] Fix page cycler (and tinderbox orange). r=disttsc@bart.nl git-svn-id: svn://10.0.0.236/trunk@92313 18797224-902f-48f8-a5cc-f745e15eee43 --- .../xpfe/browser/resources/content/nsBrowserStatusHandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/xpfe/browser/resources/content/nsBrowserStatusHandler.js b/mozilla/xpfe/browser/resources/content/nsBrowserStatusHandler.js index 6f4d046e07c..8541c50517c 100644 --- a/mozilla/xpfe/browser/resources/content/nsBrowserStatusHandler.js +++ b/mozilla/xpfe/browser/resources/content/nsBrowserStatusHandler.js @@ -286,7 +286,7 @@ nsBrowserStatusHandler.prototype = var observerService = Components.classes["@mozilla.org/observer-service;1"] .getService(Components.interfaces.nsIObserverService); - var notification = Components.isSuccessCode(aStatus) ? "FailDocumentLoad" : "EndDocumentLoad"; + var notification = Components.isSuccessCode(aStatus) ? "EndDocumentLoad" : "FailDocumentLoad"; try { observerService.Notify(_content, notification, urlStr); } catch (e) {