Ticket #13215: 13215.check.for.deleted.menu.1.patch
| File 13215.check.for.deleted.menu.1.patch, 664 bytes (added by , 16 years ago) |
|---|
-
wp-admin/js/nav-menu.dev.js
409 409 410 410 $.fn.extend({ 411 411 makeTabVisible : function() { 412 var t = this.eq(0), 413 left = t.offset().left, 414 right = left + t.outerWidth(); 412 var t = this.eq(0), left, right; 413 if( ! t.length ) return; 414 left = t.offset().left; 415 right = left + t.outerWidth(); 415 416 if( right > fixedRight ) 416 417 fluid.animate({ 'margin-left' : "+=" + (fixedRight - right) + 'px', }, 'fast'); 417 418 else if ( left < fixedLeft )