Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
chrome.tabs.onUpdated.addListener(api.handleTabUpdated);
chrome.tabs.onActivated.addListener(api.handleTabActivated);
}
})(typeof globalThis !== "undefined" ? globalThis : this, function () {
})(globalThis, function () {
const ACTIVE_PATH = { 16: "icon-16.png", 48: "icon-48.png", 128: "icon-128.png" };
const DISABLED_PATH = {
16: "icon-16-disabled.png",
Expand Down
2 changes: 1 addition & 1 deletion checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
} else {
Object.assign(root, factory());
}
})(typeof globalThis !== "undefined" ? globalThis : this, function () {
})(globalThis, function () {
// The whole status-checks/merge box — used as the scroll target. Class
// names are CSS-module-hashed (`MergeBox-module__mergePartialContainer__x`)
// so we match on the stable human-readable prefix and fall back through
Expand Down
2 changes: 1 addition & 1 deletion constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
} else {
Object.assign(root, factory());
}
})(typeof globalThis !== "undefined" ? globalThis : this, function () {
})(globalThis, function () {
// chrome.storage.local key holding the user's order preference.
const STORAGE_KEY = "prCommentOrder";
// Allowed values for that preference.
Expand Down
Loading