Ticket #19978: navigation_enqueuing.patch
File navigation_enqueuing.patch, 686 bytes (added by , 13 years ago) |
---|
-
wp-content/themes/twentytwelve/functions.php
193 193 * @since Twenty Twelve 1.0 194 194 */ 195 195 function twentytwelve_scripts() { 196 wp_enqueue_script( 'jquery' ); 197 wp_enqueue_script( 'navigation', get_template_directory_uri() . '/js/navigation.js', 'jquery', '20120227', true ); 196 wp_enqueue_script( 'navigation', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20120227', true ); 198 197 } 199 198 add_action( 'wp_enqueue_scripts', 'twentytwelve_scripts' ); 200 199