Make WordPress Core

Changeset 33334


Ignore:
Timestamp:
07/20/2015 08:01:34 PM (9 years ago)
Author:
obenland
Message:

Toolbar: Restore scroll-to-top functionality.

H/t Ipstenu.
Introduced in [33056].

See #29906.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/js/admin-bar.js

    r33056 r33334  
    130130        });
    131131
    132         $('#wpadminbar').click( function(e) {
     132        adminbar.click( function(e) {
    133133            if ( e.target.id != 'wpadminbar' && e.target.id != 'wp-admin-bar-top-secondary' ) {
    134134                return;
    135             } else {
    136                 adminbar.find( 'li.menupop.hover' ).removeClass( 'hover' );
    137                 e.stopPropagation();
    138                 return;
    139             }
    140 
     135            }
     136
     137            adminbar.find( 'li.menupop.hover' ).removeClass( 'hover' );
     138            $( 'html, body' ).animate( { scrollTop: 0 }, 'fast' );
    141139            e.preventDefault();
    142             $('html, body').animate({ scrollTop: 0 }, 'fast');
    143140        });
    144141
Note: See TracChangeset for help on using the changeset viewer.