We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 61fa5d2 + e39b86a commit 35b9ae1Copy full SHA for 35b9ae1
plugins/optimization-detective/detect.js
@@ -401,6 +401,11 @@ export default async function detect( {
401
return;
402
}
403
404
+ if ( document.visibilityState === 'hidden' && ! document.prerendering ) {
405
+ log( 'Page opened in background tab so URL Metric is not collected.' );
406
+ return;
407
+ }
408
+
409
// Abort if the current viewport is not among those which need URL Metrics.
410
const urlMetricGroupStatus = getGroupForViewportWidth(
411
win.innerWidth,
0 commit comments