Make WordPress Core

Ticket #13470: pixel-sanity-check.13470.diff

File pixel-sanity-check.13470.diff, 605 bytes (added by filosofo, 15 years ago)
  • wp-admin/js/nav-menu.dev.js

     
    5555                        // jQuery extensions
    5656                        $.fn.extend({
    5757                                menuItemDepth : function() {
    58                                         return api.pxToDepth( this.eq(0).css('margin-left').slice(0, -2) );
     58                                        var margin = this.eq(0).css('margin-left');
     59                                        return api.pxToDepth( margin && -1 != margin.indexOf('px') ? margin.slice(0, -2) : 0 );
    5960                                },
    6061                                updateDepthClass : function(current, prev) {
    6162                                        return this.each(function(){