Skip to content

Commit 032dfa0

Browse files
authored
Merge pull request #450 from BeAPI/fix/header-script
fix (header): prevent uncached page with php param
2 parents c44ee24 + 7a49044 commit 032dfa0

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

header.php

+4-9
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,10 @@
99
(function(){
1010
const html = document.documentElement;
1111
html.className = html.className.replace(/no-js/, 'js');
12-
<?php
13-
if ( ! isset( $_GET['js_animation'] ) || $_GET['js_animation'] !== 'false' ) :
14-
?>
15-
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
16-
html.className = html.className.replace(/no-js-animation/, 'js-animation');
17-
}
18-
<?php
19-
endif;
20-
?>
12+
13+
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches && !window.location.hash.includes('no-js-animation')) {
14+
html.className = html.className.replace(/no-js-animation/, 'js-animation');
15+
}
2116
})();
2217
//]]>
2318
</script>

0 commit comments

Comments
 (0)