Skip to content

Commit f09854a

Browse files
authored
Moved inline comment.
1 parent 776d1c6 commit f09854a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

packages/react-devtools-extensions/src/injectGlobalHook.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ window.addEventListener('message', function(evt) {
3131
reactBuildType: evt.data.reactBuildType,
3232
};
3333
chrome.runtime.sendMessage(lastDetectionResult);
34-
35-
// Inject the backend. This is done in the content script to avoid CSP
36-
// and Trusted Types violations, since content scripts can modify the DOM
37-
// and are not subject to the page's policies.
3834
} else if (evt.data.source === 'react-devtools-inject-backend') {
39-
// the prototype stuff is in case document.createElement has been modified
35+
// The backend is injected by the content script to avoid CSP and Trusted Types violations,
36+
// since content scripts can modify the DOM and are not subject to the page's policies.
37+
// The prototype stuff is in case document.createElement has been modified.
4038
const script = document.constructor.prototype.createElement.call(
4139
document,
4240
'script',

0 commit comments

Comments
 (0)