Bug 693029 - followup: fix another errant pair of quotes.

This commit is contained in:
Graeme McCutcheon 2012-10-08 09:32:16 +01:00
parent 007bcc69cb
commit 1462e7bb07

View File

@ -4158,7 +4158,7 @@ var XULBrowserWindow = {
// Don't need to re-enable/disable find commands for same-document location changes
// (e.g. the replaceStates in about:addons)
if (!(aFlags & nsIWebProgressListener.LOCATION_CHANGE_SAME_DOCUMENT)) {
if (content.document.readyState == 'interactive' || content.document.readyState == "complete")
if (content.document.readyState == "interactive" || content.document.readyState == "complete")
disableFindCommands(shouldDisableFind(content.document));
else {
content.document.addEventListener("readystatechange", onContentRSChange);