Make WordPress Core

Ticket #20614: 20614-alternate-3.patch

File 20614-alternate-3.patch, 985 bytes (added by lessbloat, 12 years ago)
  • wp-includes/js/admin-bar.js

     
    2121                        sensitivity: 7,
    2222                        interval: 100
    2323                });
     24               
     25                if ( $('body').hasClass('mobile') ) {
     26                        $('.ab-top-menu .menupop > a').on('click', function (e) {
     27                                e.preventDefault();
     28                        });
     29                }
    2430
    2531                $('#wp-admin-bar-get-shortlink').click(function(e){
    2632                        e.preventDefault();
  • wp-admin/js/common.js

     
    232232                sensitivity: 7,
    233233                interval: 90
    234234        });
     235       
     236        if ( $('body').hasClass('mobile') ) {
     237                $('.wp-has-submenu > a').on('click', function (e) {
     238                        e.preventDefault();
     239                });
     240        }
    235241
    236242        menu.on('focus.adminmenu', '.wp-submenu a', function(e){
    237243                $(e.target).closest('li.menu-top').addClass('opensub');