We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c44ee24 + 7a49044 commit 032dfa0Copy full SHA for 032dfa0
header.php
@@ -9,15 +9,10 @@
9
(function(){
10
const html = document.documentElement;
11
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
19
- endif;
20
+
+ if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches && !window.location.hash.includes('no-js-animation')) {
+ html.className = html.className.replace(/no-js-animation/, 'js-animation');
+ }
21
})();
22
//]]>
23
</script>
0 commit comments