Ticket #64526: 64526.diff
| File 64526.diff, 1.2 KB (added by , 7 weeks ago) |
|---|
-
src/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php
70 70 'twentytwentyone-dark-mode-support-toggle', 71 71 get_template_directory_uri() . '/assets/js/dark-mode-toggler.js', 72 72 array(), 73 '1.0.0',73 wp_get_theme()->get( 'Version' ), 74 74 array( 'in_footer' => true ) 75 75 ); 76 76 … … 78 78 'twentytwentyone-editor-dark-mode-support', 79 79 get_template_directory_uri() . '/assets/js/editor-dark-mode-support.js', 80 80 array( 'twentytwentyone-dark-mode-support-toggle' ), 81 '1.0.0',81 wp_get_theme()->get( 'Version' ), 82 82 array( 'in_footer' => true ) 83 83 ); 84 84 } … … 116 116 'twentytwentyone-customize-controls', 117 117 get_template_directory_uri() . '/assets/js/customize.js', 118 118 array( 'customize-base', 'customize-controls', 'underscore', 'jquery', 'twentytwentyone-customize-helpers' ), 119 '1.0.0',119 wp_get_theme()->get( 'Version' ), 120 120 array( 'in_footer' => true ) 121 121 ); 122 122 }