Ticket #29152: 29152.2.patch
File 29152.2.patch, 585 bytes (added by , 11 years ago) |
---|
-
src/wp-includes/js/media-views.js
5009 5009 return; 5010 5010 } 5011 5011 5012 // Bail if the model is already selected 5013 if ( this.$el.hasClass( 'selected' ) ) { 5014 return; 5015 } 5016 5017 // Add 'selected' class to model. Set aria-checked to true. 5018 // Make the checkbox tabable 5012 5019 this.$el.addClass( 'selected' ).attr( 'aria-checked', true ) 5013 5020 .find( '.check' ).attr( 'tabindex', '0' ); 5014 5021