Make WordPress Core

Ticket #13220: 13220.remove.trailing.commas.1.patch

File 13220.remove.trailing.commas.1.patch, 2.1 KB (added by koopersmith, 14 years ago)
  • wp-admin/js/nav-menu.dev.js

     
    208208                                                        t.find('img.waiting').hide();
    209209                                                });
    210210                                        });
    211                                 },
     211                                }
    212212                        });
    213213                },
    214214
     
    476476                                'action': 'add-menu-item',
    477477                                'menu': menu,
    478478                                'menu-settings-column-nonce': nonce,
    479                                 'menu-item': menuItem,
     479                                'menu-item': menuItem
    480480                        };
    481481               
    482482                        $.post( ajaxurl, params, function(menuMarkup) {
     
    560560                                tabs = fluid.children('.nav-tab'),
    561561                                tabsWidth = 0,
    562562                                fixedRight, fixedLeft,
    563                                 arrowLeft, arrowRight
     563                                arrowLeft, arrowRight,
    564564                                resizing = false;
    565565
    566566                        function resetMenuTabs() {
     
    576576                                        left = t.offset().left;
    577577                                        right = left + t.outerWidth();
    578578                                        if( right > fixedRight )
    579                                                 fluid.animate({ 'margin-left' :  "+=" + (fixedRight - right) + 'px', }, 'fast');
     579                                                fluid.animate({ 'margin-left' :  "+=" + (fixedRight - right) + 'px' }, 'fast');
    580580                                        else if ( left < fixedLeft )
    581                                                 fluid.animate({ 'margin-left' :  "-=" + (left - fixedLeft) + 'px', }, 'fast');
     581                                                fluid.animate({ 'margin-left' :  "-=" + (left - fixedLeft) + 'px' }, 'fast');
    582582                                        return t;
    583583                                },
    584584                                isTabVisible : function() {
     
    603603                        // Set up right margin for overflow, unset padding
    604604                        fluid.css({
    605605                                'margin-right'  : (-1 * tabsWidth) + 'px',
    606                                 'padding' : 0,
     606                                'padding' : 0
    607607                        });
    608608
    609609                        // Build tab navigation
     
    629629                                        arrow : arrowLeft,
    630630                                        next : "next",
    631631                                        last : "first",
    632                                         operator : "+=",
     632                                        operator : "+="
    633633                                },{
    634634                                        arrow : arrowRight,
    635635                                        next : "prev",
    636636                                        last : "last",
    637                                         operator : "-=",
     637                                        operator : "-="
    638638                                }], function(){
    639639                                var that = this;
    640640                                this.arrow.mousedown(function(){
    641641                                        var last = tabs[that.last](),
    642642                                                fn = function() {
    643643                                                        if( ! last.isTabVisible() )
    644                                                                 fluid.animate({ 'margin-left' :  that.operator + '90px', }, 300, "linear", fn);
     644                                                                fluid.animate({ 'margin-left' :  that.operator + '90px' }, 300, "linear", fn);
    645645                                                };
    646646                                                fn();
    647647                                }).mouseup(function(){