Skip to content

Commit 5659a0b

Browse files
authored
Merge pull request #75 from GoogleChrome/openpopup-condition
Correct condition for openPopup() API
2 parents 3636fed + 8b004e5 commit 5659a0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/override.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export class RenderOverride extends EmptyRenderOverride {
121121
case 'api:contentScripts.ContentScript.world':
122122
return !this.#majorVersion || this.#majorVersion >= 111;
123123
case 'api:action.openPopup':
124-
return !this.#majorVersion || this.#majorVersion >= 126;
124+
return !this.#majorVersion || this.#majorVersion >= 127;
125125
case 'api:contextMenus.OnClickData':
126126
case 'api:notifications.NotificationBitmap':
127127
case 'api:sidePanel.getPanelBehavior':

0 commit comments

Comments
 (0)