Ticket #28117: 28117.1.patch
| File 28117.1.patch, 554 bytes (added by , 5 years ago) |
|---|
-
src/wp-includes/class-wp-admin-bar.php
431 431 final protected function _render( $root ) { 432 432 // Add browser classes. 433 433 // We have to do this here since admin bar shows on the front end. 434 $class = 'noj q nojs';435 if ( wp_is_mobile() ) {434 $class = 'nojs'; 435 if ( is_user_logged_in() && wp_is_mobile() ) { 436 436 $class .= ' mobile'; 437 437 } 438 438