Bug 1361463 - Fix typo in BrowserAction.getPopup, r=kmag

The if statement in getPopup should read `if (!blockParser)` not `if (!this.blockParser)`.

MozReview-Commit-ID: IBtHHS634sG
This commit is contained in:
Bob Silverberg
2017-05-02 14:55:03 -04:00
parent 0c0d45a1c1
commit acab821a21

View File

@@ -321,7 +321,7 @@ this.browserAction = class extends ExtensionAPI {
if (pendingPopup) {
if (pendingPopup.window === window && pendingPopup.popupURL === popupURL) {
if (!this.blockParser) {
if (!blockParser) {
pendingPopup.unblockParser();
}