Changeset 7276
- Timestamp:
- 06/06/2018 05:39:51 PM (7 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/user-content-voting.php
r6401 r7276 65 65 // Only need to enqueue voting-related resources if there are comments to vote on. 66 66 if ( self::user_can_vote() && is_singular() && '0' != get_comments_number() ) { 67 wp_register_script( 'wporg-developer-user-notes-voting', get_template_directory_uri() . '/js/user-notes-voting.js', array( 'wp-a11y' ), '20180 118', true );67 wp_register_script( 'wporg-developer-user-notes-voting', get_template_directory_uri() . '/js/user-notes-voting.js', array( 'wp-a11y' ), '20180606', true ); 68 68 wp_localize_script( 'wporg-developer-user-notes-voting', 'ajaxurl', admin_url( 'admin-ajax.php' ) ); 69 69 wp_enqueue_script( 'wporg-developer-user-notes-voting' ); … … 307 307 } 308 308 309 echo '<div id="user-note-voting"class="user-note-voting" data-nonce="' . esc_attr( $nonce ) . '">';309 echo '<div class="user-note-voting" data-nonce="' . esc_attr( $nonce ) . '">'; 310 310 311 311 // Up vote link … … 333 333 } 334 334 echo '">'; 335 echo '<span class="dashicons dashicons-arrow-up" ></span>';335 echo '<span class="dashicons dashicons-arrow-up" aria-hidden="true"></span>'; 336 336 echo '<span class="screen-reader-text">' . $title . '</span>'; 337 337 echo "</{$tag}>"; … … 374 374 } 375 375 echo '">'; 376 echo '<span class="dashicons dashicons-arrow-down" ></span>';376 echo '<span class="dashicons dashicons-arrow-down" aria-hidden="true"></span>'; 377 377 echo '<span class="screen-reader-text">' . $title . '</span>'; 378 378 echo "</{$tag}>"; -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/js/user-notes-voting.js
r6400 r7276 5 5 6 6 ( function( $, wp ) { 7 $( '# user-note-voting' ).on( 'click', '.user-note-voting-up,.user-note-voting-down', function( event ) {7 $( '#comments' ).on( 'click', 'a.user-note-voting-up, a.user-note-voting-down', function( event ) { 8 8 event.preventDefault(); 9 9
Note: See TracChangeset
for help on using the changeset viewer.