Changeset 26332
- Timestamp:
- 11/22/2013 10:41:21 PM (12 years ago)
- Location:
- trunk/src/wp-content/themes/twentyfourteen/js
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/js/customizer.js
r24832 r26332 1 1 /** 2 * T heme Customizer enhancements for a better user experience.2 * Twenty Fourteen Theme Customizer enhancements for a better user experience. 3 3 * 4 4 * Contains handlers to make Theme Customizer preview reload changes asynchronously. 5 5 */ 6 7 6 ( function( $ ) { 8 7 // Site title and description. -
trunk/src/wp-content/themes/twentyfourteen/js/featured-content-admin.js
r26084 r26332 1 /** 2 * Twenty Fourteen Featured Content admin behavior: add a tag suggestion 3 * when changing the tag. 4 */ 1 5 /* global ajaxurl:true */ 2 jQuery( function( $ ) {6 ( function( $ ) { 3 7 $( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } ); 4 } ) ;8 } )( jQuery ); -
trunk/src/wp-content/themes/twentyfourteen/js/functions.js
r26261 r26332 1 /** 2 * Theme functions file 3 * 4 * Contains handlers for navigation, accessibility, header sizing 5 * footer widgets and Featured Content slider 6 * 7 */ 1 8 ( function( $ ) { 2 9 var body = $( 'body' ), -
trunk/src/wp-content/themes/twentyfourteen/js/keyboard-image-navigation.js
r26226 r26332 1 jQuery( function( $ ) { 1 /** 2 * Twenty Fourteen keyboard support for image navigation. 3 */ 4 ( function( $ ) { 2 5 $( document ).on( 'keydown.twentyfourteen', function( e ) { 3 6 var url = false; … … 16 19 } 17 20 } ); 18 } ) ;21 } )( jQuery ); -
trunk/src/wp-content/themes/twentyfourteen/js/slider.js
r26261 r26332 1 /* global DocumentTouch:true,setImmediate:true,featuredSliderDefaults:true,MSGesture:true */2 1 /* 3 2 * Twenty Fourteen Featured Content Slider … … 6 5 * @link http://www.woothemes.com/flexslider/ 7 6 */ 8 7 /* global DocumentTouch:true,setImmediate:true,featuredSliderDefaults:true,MSGesture:true */ 9 8 ( function( $ ) { 10 9 // FeaturedSlider: object instance.
Note: See TracChangeset
for help on using the changeset viewer.