Ticket #3606: 3606.patch
File 3606.patch, 1.7 KB (added by , 7 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/user-content-voting.php
332 332 echo '" href="' . esc_url( $up_url ); 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}>"; 338 338 … … 373 373 echo '" href="' . esc_url( $down_url ); 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}>"; 379 379 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/js/user-notes-voting.js
4 4 */ 5 5 6 6 ( function( $, wp ) { 7 $( '#user-note-voting' ).on( 'click', '.user-note-voting-up,.user-note-voting-down', function( event ) {7 $( document ).on( 'click', 'a.user-note-voting-up, a.user-note-voting-down', function( event ) { 8 8 event.preventDefault(); 9 9 10 10 var $item = $( this ),