Changeset 26071
- Timestamp:
- 11/09/2013 11:27:28 PM (11 years ago)
- Location:
- trunk/src/wp-content/themes/twentyfourteen
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/functions.php
r26047 r26071 236 236 wp_enqueue_script( 'jquery-masonry' ); 237 237 238 if ( is_front_page() && 'slider' == get_theme_mod( 'featured_content_layout' ) ) 239 wp_enqueue_script( 'twentyfourteen-slider', get_template_directory_uri() . '/js/slider.js', array( 'jquery' ), '20131028', true ); 238 if ( is_front_page() && 'slider' == get_theme_mod( 'featured_content_layout' ) ) { 239 wp_enqueue_script( 'twentyfourteen-slider', get_template_directory_uri() . '/js/slider.js', array( 'jquery' ), '20131109', true ); 240 wp_localize_script( 'twentyfourteen-slider', 'featuredSliderDefaults', array( 241 'prevText' => __( 'Previous', 'twentyfourteen' ), 242 'nextText' => __( 'Next', 'twentyfourteen' ) 243 ) ); 244 } 240 245 241 246 wp_enqueue_script( 'twentyfourteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20131102', true ); -
trunk/src/wp-content/themes/twentyfourteen/js/slider.js
r25995 r26071 547 547 controlsContainer: '', // jQuery Object/Selector: container navigation to append elements. 548 548 549 // Text labels : @todo allow translation550 prevText: 'Previous',// String: Set the text for the "previous" directionNav item.551 nextText: 'Next'// String: Set the text for the "next" directionNav item.549 // Text labels. 550 prevText: featuredSliderDefaults.prevText, // String: Set the text for the "previous" directionNav item. 551 nextText: featuredSliderDefaults.nextText // String: Set the text for the "next" directionNav item. 552 552 }; 553 553
Note: See TracChangeset
for help on using the changeset viewer.