Changeset 7432
- Timestamp:
- 07/11/2018 09:57:21 PM (7 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main
- Files:
-
- 2 edited
-
functions.php (modified) (2 diffs)
-
page-download-counter.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/functions.php
r7430 r7432 66 66 */ 67 67 function scripts() { 68 $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; 69 68 70 wp_enqueue_style( 'wporg-style', get_theme_file_uri( '/css/style.css' ), [ 'dashicons', 'open-sans' ], '20180711' ); 69 71 wp_style_add_data( 'wporg-style', 'rtl', 'replace' ); … … 95 97 96 98 if ( is_page() && get_queried_object()->post_parent ) { 97 wp_enqueue_script( 'wporg-navigation', get_theme_file_uri( '/js/navigation.js'), [], '20151215', true );99 wp_enqueue_script( 'wporg-navigation', get_theme_file_uri( "/js/navigation$suffix.js" ), [], '20151215', true ); 98 100 } 99 101 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download-counter.php
r7411 r7432 210 210 </div> 211 211 212 <script type="text/javascript" src="//code.jquery.com/jquery-latest. js"></script>212 <script type="text/javascript" src="//code.jquery.com/jquery-latest.min.js"></script> 213 213 <script type="text/javascript"> 214 214 jQuery( function( $ ) {
Note: See TracChangeset
for help on using the changeset viewer.