Make WordPress Core

Changeset 31569


Ignore:
Timestamp:
02/27/2015 10:20:18 AM (10 years ago)
Author:
ocean90
Message:

Update jQuery UI to 1.11.3.

Changelog:

fixes #31473.

Location:
trunk/src
Files:
41 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/common.css

    r31564 r31569  
    28492849
    28502850/*!
    2851  * jQuery UI Draggable/Sortable 1.11.2
     2851 * jQuery UI Draggable/Sortable 1.11.3
    28522852 * http://jqueryui.com
    28532853 *
    2854  * Copyright 2014 jQuery Foundation and other contributors
     2854 * Copyright jQuery Foundation and other contributors
    28552855 * Released under the MIT license.
    28562856 * http://jquery.org/license
     
    28592859.ui-sortable-handle {
    28602860    -ms-touch-action: none;
    2861     touch-action:     none;
     2861    touch-action: none;
    28622862}
    28632863
  • trunk/src/wp-includes/css/jquery-ui-dialog.css

    r30343 r31569  
    11/*!
    2  * jQuery UI CSS Framework 1.11.2
     2 * jQuery UI CSS Framework 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    9494
    9595/*!
    96  * jQuery UI Resizable 1.11.2
     96 * jQuery UI Resizable 1.11.3
    9797 * http://jqueryui.com
    9898 *
    99  * Copyright 2014 jQuery Foundation and other contributors
     99 * Copyright jQuery Foundation and other contributors
    100100 * Released under the MIT license.
    101101 * http://jquery.org/license
  • trunk/src/wp-includes/css/media-views.css

    r31505 r31569  
    106106
    107107/*!
    108  * jQuery UI Draggable/Sortable 1.11.2
     108 * jQuery UI Draggable/Sortable 1.11.3
    109109 * http://jqueryui.com
    110110 *
    111  * Copyright 2014 jQuery Foundation and other contributors
     111 * Copyright jQuery Foundation and other contributors
    112112 * Released under the MIT license.
    113113 * http://jquery.org/license
     
    116116.ui-sortable-handle {
    117117    -ms-touch-action: none;
    118     touch-action:     none;
     118    touch-action: none;
    119119}
    120120
  • trunk/src/wp-includes/js/jquery/ui/accordion.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Accordion 1.11.2
     2 * jQuery UI Accordion 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2626
    2727return $.widget( "ui.accordion", {
    28     version: "1.11.2",
     28    version: "1.11.3",
    2929    options: {
    3030        active: 0,
     
    484484            "aria-hidden": "true"
    485485        });
    486         toHide.prev().attr( "aria-selected", "false" );
     486        toHide.prev().attr({
     487            "aria-selected": "false",
     488            "aria-expanded": "false"
     489        });
    487490        // if we're switching panels, remove the old header from the tab order
    488491        // if we're opening from collapsed state, remove the previous header from the tab order
     
    495498        } else if ( toShow.length ) {
    496499            this.headers.filter(function() {
    497                 return $( this ).attr( "tabIndex" ) === 0;
     500                return parseInt( $( this ).attr( "tabIndex" ), 10 ) === 0;
    498501            })
    499502            .attr( "tabIndex", -1 );
     
    505508                .attr({
    506509                    "aria-selected": "true",
    507                     tabIndex: 0,
    508                     "aria-expanded": "true"
     510                    "aria-expanded": "true",
     511                    tabIndex: 0
    509512                });
    510513    },
  • trunk/src/wp-includes/js/jquery/ui/autocomplete.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Autocomplete 1.11.2
     2 * jQuery UI Autocomplete 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2828
    2929$.widget( "ui.autocomplete", {
    30     version: "1.11.2",
     30    version: "1.11.3",
    3131    defaultElement: "<input>",
    3232    options: {
  • trunk/src/wp-includes/js/jquery/ui/button.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Button 1.11.2
     2 * jQuery UI Button 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    5353
    5454$.widget( "ui.button", {
    55     version: "1.11.2",
     55    version: "1.11.3",
    5656    defaultElement: "<button>",
    5757    options: {
     
    349349
    350350$.widget( "ui.buttonset", {
    351     version: "1.11.2",
     351    version: "1.11.3",
    352352    options: {
    353353        items: "button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(ui-button)"
  • trunk/src/wp-includes/js/jquery/ui/core.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Core 1.11.2
     2 * jQuery UI Core 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2525
    2626$.extend( $.ui, {
    27     version: "1.11.2",
     27    version: "1.11.3",
    2828
    2929    keyCode: {
     
    9898        return !!img && visible( img );
    9999    }
    100     return ( /input|select|textarea|button|object/.test( nodeName ) ?
     100    return ( /^(input|select|textarea|button|object)$/.test( nodeName ) ?
    101101        !element.disabled :
    102102        "a" === nodeName ?
  • trunk/src/wp-includes/js/jquery/ui/datepicker.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Datepicker 1.11.2
     2 * jQuery UI Datepicker 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2424}(function( $ ) {
    2525
    26 $.extend($.ui, { datepicker: { version: "1.11.2" } });
     26$.extend($.ui, { datepicker: { version: "1.11.3" } });
    2727
    2828var datepicker_instActive;
     
    390390            $target.removeClass(this.markerClassName).empty();
    391391        }
     392
     393        if ( datepicker_instActive === inst ) {
     394            datepicker_instActive = null;
     395        }
    392396    },
    393397
     
    20742078$.datepicker.initialized = false;
    20752079$.datepicker.uuid = new Date().getTime();
    2076 $.datepicker.version = "1.11.2";
     2080$.datepicker.version = "1.11.3";
    20772081
    20782082return $.datepicker;
  • trunk/src/wp-includes/js/jquery/ui/dialog.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Dialog 1.11.2
     2 * jQuery UI Dialog 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    3131
    3232return $.widget( "ui.dialog", {
    33     version: "1.11.2",
     33    version: "1.11.3",
    3434    options: {
    3535        appendTo: "body",
  • trunk/src/wp-includes/js/jquery/ui/draggable.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Draggable 1.11.2
     2 * jQuery UI Draggable 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2727
    2828$.widget("ui.draggable", $.ui.mouse, {
    29     version: "1.11.2",
     29    version: "1.11.3",
    3030    widgetEventPrefix: "drag",
    3131    options: {
  • trunk/src/wp-includes/js/jquery/ui/droppable.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Droppable 1.11.2
     2 * jQuery UI Droppable 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2828
    2929$.widget( "ui.droppable", {
    30     version: "1.11.2",
     30    version: "1.11.3",
    3131    widgetEventPrefix: "drop",
    3232    options: {
  • trunk/src/wp-includes/js/jquery/ui/effect-blind.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Blind 1.11.2
     2 * jQuery UI Effects Blind 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-bounce.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Bounce 1.11.2
     2 * jQuery UI Effects Bounce 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-clip.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Clip 1.11.2
     2 * jQuery UI Effects Clip 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-drop.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Drop 1.11.2
     2 * jQuery UI Effects Drop 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-explode.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Explode 1.11.2
     2 * jQuery UI Effects Explode 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-fade.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Fade 1.11.2
     2 * jQuery UI Effects Fade 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-fold.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Fold 1.11.2
     2 * jQuery UI Effects Fold 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-highlight.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Highlight 1.11.2
     2 * jQuery UI Effects Highlight 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-puff.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Puff 1.11.2
     2 * jQuery UI Effects Puff 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-pulsate.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Pulsate 1.11.2
     2 * jQuery UI Effects Pulsate 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-scale.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Scale 1.11.2
     2 * jQuery UI Effects Scale 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-shake.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Shake 1.11.2
     2 * jQuery UI Effects Shake 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-size.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Size 1.11.2
     2 * jQuery UI Effects Size 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-slide.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Slide 1.11.2
     2 * jQuery UI Effects Slide 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect-transfer.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects Transfer 1.11.2
     2 * jQuery UI Effects Transfer 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
  • trunk/src/wp-includes/js/jquery/ui/effect.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Effects 1.11.2
     2 * jQuery UI Effects 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    905905
    906906$.extend( $.effects, {
    907     version: "1.11.2",
     907    version: "1.11.3",
    908908
    909909    // Saves a set of properties in a data storage
  • trunk/src/wp-includes/js/jquery/ui/menu.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Menu 1.11.2
     2 * jQuery UI Menu 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2727
    2828return $.widget( "ui.menu", {
    29     version: "1.11.2",
     29    version: "1.11.3",
    3030    defaultElement: "<ul>",
    3131    delay: 300,
  • trunk/src/wp-includes/js/jquery/ui/mouse.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Mouse 1.11.2
     2 * jQuery UI Mouse 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    3030
    3131return $.widget("ui.mouse", {
    32     version: "1.11.2",
     32    version: "1.11.3",
    3333    options: {
    3434        cancel: "input,textarea,button,select,option",
  • trunk/src/wp-includes/js/jquery/ui/position.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Position 1.11.2
     2 * jQuery UI Position 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    449449            if ( overTop < 0 ) {
    450450                newOverBottom = position.top + myOffset + atOffset + offset + data.collisionHeight - outerHeight - withinOffset;
    451                 if ( ( position.top + myOffset + atOffset + offset) > overTop && ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) ) {
     451                if ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) {
    452452                    position.top += myOffset + atOffset + offset;
    453453                }
    454454            } else if ( overBottom > 0 ) {
    455455                newOverTop = position.top - data.collisionPosition.marginTop + myOffset + atOffset + offset - offsetTop;
    456                 if ( ( position.top + myOffset + atOffset + offset) > overBottom && ( newOverTop > 0 || abs( newOverTop ) < overBottom ) ) {
     456                if ( newOverTop > 0 || abs( newOverTop ) < overBottom ) {
    457457                    position.top += myOffset + atOffset + offset;
    458458                }
  • trunk/src/wp-includes/js/jquery/ui/progressbar.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Progressbar 1.11.2
     2 * jQuery UI Progressbar 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2626
    2727return $.widget( "ui.progressbar", {
    28     version: "1.11.2",
     28    version: "1.11.3",
    2929    options: {
    3030        max: 100,
  • trunk/src/wp-includes/js/jquery/ui/resizable.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Resizable 1.11.2
     2 * jQuery UI Resizable 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2727
    2828$.widget("ui.resizable", $.ui.mouse, {
    29     version: "1.11.2",
     29    version: "1.11.3",
    3030    widgetEventPrefix: "resize",
    3131    options: {
     
    100100
    101101        // Wrap the element if it cannot hold child nodes
    102         if (this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)) {
     102        if (this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)) {
    103103
    104104            this.element.wrap(
     
    201201                }
    202202
    203                 if (this.elementIsWrapper && this.originalElement[0].nodeName.match(/textarea|input|select|button/i)) {
     203                if (this.elementIsWrapper && this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)) {
    204204
    205205                    axis = $(this.handles[i], this.element);
     
    944944        }
    945945
    946         if ( !continueResize ){
     946        if ( !continueResize ) {
    947947            that.position.left = that.prevPosition.left;
    948948            that.position.top = that.prevPosition.top;
     
    11661166                that.position.left = op.left - ox;
    11671167            } else {
    1168                 newWidth = gridY - outerDimensions.height;
     1168                newWidth = gridX - outerDimensions.width;
    11691169                that.size.width = newWidth;
    11701170                that.position.left = op.left + os.width - newWidth;
  • trunk/src/wp-includes/js/jquery/ui/selectable.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Selectable 1.11.2
     2 * jQuery UI Selectable 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2727
    2828return $.widget("ui.selectable", $.ui.mouse, {
    29     version: "1.11.2",
     29    version: "1.11.3",
    3030    options: {
    3131        appendTo: "body",
  • trunk/src/wp-includes/js/jquery/ui/selectmenu.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Selectmenu 1.11.2
     2 * jQuery UI Selectmenu 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2828
    2929return $.widget( "ui.selectmenu", {
    30     version: "1.11.2",
     30    version: "1.11.3",
    3131    defaultElement: "<select>",
    3232    options: {
     
    6868
    6969    _drawButton: function() {
    70         var that = this,
    71             tabindex = this.element.attr( "tabindex" );
     70        var that = this;
    7271
    7372        // Associate existing label with the new button
     
    8685        this.button = $( "<span>", {
    8786            "class": "ui-selectmenu-button ui-widget ui-state-default ui-corner-all",
    88             tabindex: tabindex || this.options.disabled ? -1 : 0,
     87            tabindex: this.options.disabled ? -1 : 0,
    8988            id: this.ids.button,
    9089            role: "combobox",
     
    596595                element: option,
    597596                index: index,
    598                 value: option.attr( "value" ),
     597                value: option.val(),
    599598                label: option.text(),
    600599                optgroup: optgroup.attr( "label" ) || "",
  • trunk/src/wp-includes/js/jquery/ui/slider.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Slider 1.11.2
     2 * jQuery UI Slider 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2727
    2828return $.widget( "ui.slider", $.ui.mouse, {
    29     version: "1.11.2",
     29    version: "1.11.3",
    3030    widgetEventPrefix: "slide",
    3131
     
    548548
    549549    _calculateNewMax: function() {
    550         var remainder = ( this.options.max - this._valueMin() ) % this.options.step;
    551         this.max = this.options.max - remainder;
     550        var max = this.options.max,
     551            min = this._valueMin(),
     552            step = this.options.step,
     553            aboveMin = Math.floor( ( max - min ) / step ) * step;
     554        max = aboveMin + min;
     555        this.max = parseFloat( max.toFixed( this._precision() ) );
     556    },
     557
     558    _precision: function() {
     559        var precision = this._precisionOf( this.options.step );
     560        if ( this.options.min !== null ) {
     561            precision = Math.max( precision, this._precisionOf( this.options.min ) );
     562        }
     563        return precision;
     564    },
     565
     566    _precisionOf: function( num ) {
     567        var str = num.toString(),
     568            decimal = str.indexOf( "." );
     569        return decimal === -1 ? 0 : str.length - decimal - 1;
    552570    },
    553571
  • trunk/src/wp-includes/js/jquery/ui/sortable.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Sortable 1.11.2
     2 * jQuery UI Sortable 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2727
    2828return $.widget("ui.sortable", $.ui.mouse, {
    29     version: "1.11.2",
     29    version: "1.11.3",
    3030    widgetEventPrefix: "sort",
    3131    ready: false,
     
    277277
    278278        //Prepare scrolling
    279         if(this.scrollParent[0] !== document && this.scrollParent[0].tagName !== "HTML") {
     279        if(this.scrollParent[0] !== this.document[0] && this.scrollParent[0].tagName !== "HTML") {
    280280            this.overflowOffset = this.scrollParent.offset();
    281281        }
     
    329329        //Do scrolling
    330330        if(this.options.scroll) {
    331             if(this.scrollParent[0] !== document && this.scrollParent[0].tagName !== "HTML") {
     331            if(this.scrollParent[0] !== this.document[0] && this.scrollParent[0].tagName !== "HTML") {
    332332
    333333                if((this.overflowOffset.top + this.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) {
     
    345345            } else {
    346346
    347                 if(event.pageY - $(document).scrollTop() < o.scrollSensitivity) {
    348                     scrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed);
    349                 } else if($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) {
    350                     scrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed);
    351                 }
    352 
    353                 if(event.pageX - $(document).scrollLeft() < o.scrollSensitivity) {
    354                     scrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed);
    355                 } else if($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) {
    356                     scrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed);
     347                if(event.pageY - this.document.scrollTop() < o.scrollSensitivity) {
     348                    scrolled = this.document.scrollTop(this.document.scrollTop() - o.scrollSpeed);
     349                } else if(this.window.height() - (event.pageY - this.document.scrollTop()) < o.scrollSensitivity) {
     350                    scrolled = this.document.scrollTop(this.document.scrollTop() + o.scrollSpeed);
     351                }
     352
     353                if(event.pageX - this.document.scrollLeft() < o.scrollSensitivity) {
     354                    scrolled = this.document.scrollLeft(this.document.scrollLeft() - o.scrollSpeed);
     355                } else if(this.window.width() - (event.pageX - this.document.scrollLeft()) < o.scrollSensitivity) {
     356                    scrolled = this.document.scrollLeft(this.document.scrollLeft() + o.scrollSpeed);
    357357                }
    358358
     
    453453
    454454            if ( !axis || axis === "x" ) {
    455                 animation.left = cur.left - this.offset.parent.left - this.margins.left + (this.offsetParent[0] === document.body ? 0 : this.offsetParent[0].scrollLeft);
     455                animation.left = cur.left - this.offset.parent.left - this.margins.left + (this.offsetParent[0] === this.document[0].body ? 0 : this.offsetParent[0].scrollLeft);
    456456            }
    457457            if ( !axis || axis === "y" ) {
    458                 animation.top = cur.top - this.offset.parent.top - this.margins.top + (this.offsetParent[0] === document.body ? 0 : this.offsetParent[0].scrollTop);
     458                animation.top = cur.top - this.offset.parent.top - this.margins.top + (this.offsetParent[0] === this.document[0].body ? 0 : this.offsetParent[0].scrollTop);
    459459            }
    460460            this.reverting = true;
     
    649649        if(connectWith && connected) {
    650650            for (i = connectWith.length - 1; i >= 0; i--){
    651                 cur = $(connectWith[i]);
     651                cur = $(connectWith[i], this.document[0]);
    652652                for ( j = cur.length - 1; j >= 0; j--){
    653653                    inst = $.data(cur[j], this.widgetFullName);
     
    699699        if(connectWith && this.ready) { //Shouldn't be run the first time through due to massive slow-down
    700700            for (i = connectWith.length - 1; i >= 0; i--){
    701                 cur = $(connectWith[i]);
     701                cur = $(connectWith[i], this.document[0]);
    702702                for (j = cur.length - 1; j >= 0; j--){
    703703                    inst = $.data(cur[j], this.widgetFullName);
     
    991991        // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that
    992992        //    the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag
    993         if(this.cssPosition === "absolute" && this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) {
     993        if(this.cssPosition === "absolute" && this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) {
    994994            po.left += this.scrollParent.scrollLeft();
    995995            po.top += this.scrollParent.scrollTop();
     
    998998        // This needs to be actually done for all browsers, since pageX/pageY includes this information
    999999        // with an ugly IE fix
    1000         if( this.offsetParent[0] === document.body || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() === "html" && $.ui.ie)) {
     1000        if( this.offsetParent[0] === this.document[0].body || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() === "html" && $.ui.ie)) {
    10011001            po = { top: 0, left: 0 };
    10021002        }
     
    10481048                0 - this.offset.relative.left - this.offset.parent.left,
    10491049                0 - this.offset.relative.top - this.offset.parent.top,
    1050                 $(o.containment === "document" ? document : window).width() - this.helperProportions.width - this.margins.left,
    1051                 ($(o.containment === "document" ? document : window).height() || document.body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top
     1050                o.containment === "document" ? this.document.width() : this.window.width() - this.helperProportions.width - this.margins.left,
     1051                (o.containment === "document" ? this.document.width() : this.window.height() || this.document[0].body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top
    10521052            ];
    10531053        }
     
    10741074        }
    10751075        var mod = d === "absolute" ? 1 : -1,
    1076             scroll = this.cssPosition === "absolute" && !(this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent,
     1076            scroll = this.cssPosition === "absolute" && !(this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent,
    10771077            scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);
    10781078
     
    11001100            pageX = event.pageX,
    11011101            pageY = event.pageY,
    1102             scroll = this.cssPosition === "absolute" && !(this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);
     1102            scroll = this.cssPosition === "absolute" && !(this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);
    11031103
    11041104        // This is another very weird special case that only happens for relative elements:
     
    11061106        // 2. and the scroll parent is the document or similar to the offset parent
    11071107        // we have to refresh the relative offset during the scroll so there are no jumps
    1108         if(this.cssPosition === "relative" && !(this.scrollParent[0] !== document && this.scrollParent[0] !== this.offsetParent[0])) {
     1108        if(this.cssPosition === "relative" && !(this.scrollParent[0] !== this.document[0] && this.scrollParent[0] !== this.offsetParent[0])) {
    11091109            this.offset.relative = this._getRelativeOffset();
    11101110        }
  • trunk/src/wp-includes/js/jquery/ui/spinner.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Spinner 1.11.2
     2 * jQuery UI Spinner 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    3838
    3939return $.widget( "ui.spinner", {
    40     version: "1.11.2",
     40    version: "1.11.3",
    4141    defaultElement: "<input>",
    4242    widgetEventPrefix: "spin",
  • trunk/src/wp-includes/js/jquery/ui/tabs.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Tabs 1.11.2
     2 * jQuery UI Tabs 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2626
    2727return $.widget( "ui.tabs", {
    28     version: "1.11.2",
     28    version: "1.11.3",
    2929    delay: 300,
    3030    options: {
     
    202202        selectedIndex = this._focusNextTab( selectedIndex, goingForward );
    203203
    204         // Navigating with control key will prevent automatic activation
    205         if ( !event.ctrlKey ) {
     204        // Navigating with control/command key will prevent automatic activation
     205        if ( !event.ctrlKey && !event.metaKey ) {
     206
    206207            // Update aria-selected immediately so that AT think the tab is already selected.
    207208            // Otherwise AT may confuse the user by stating that they need to activate the tab,
  • trunk/src/wp-includes/js/jquery/ui/tooltip.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Tooltip 1.11.2
     2 * jQuery UI Tooltip 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    2727
    2828return $.widget( "ui.tooltip", {
    29     version: "1.11.2",
     29    version: "1.11.3",
    3030    options: {
    3131        content: function() {
  • trunk/src/wp-includes/js/jquery/ui/widget.js

    r29920 r31569  
    11/*!
    2  * jQuery UI Widget 1.11.2
     2 * jQuery UI Widget 1.11.3
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2014 jQuery Foundation and other contributors
     5 * Copyright jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
     
    191191            returnValue = this;
    192192
    193         // allow multiple hashes to be passed on init
    194         options = !isMethodCall && args.length ?
    195             $.widget.extend.apply( null, [ options ].concat(args) ) :
    196             options;
    197 
    198193        if ( isMethodCall ) {
    199194            this.each(function() {
     
    220215            });
    221216        } else {
     217
     218            // Allow multiple hashes to be passed on init
     219            if ( args.length ) {
     220                options = $.widget.extend.apply( null, [ options ].concat(args) );
     221            }
     222
    222223            this.each(function() {
    223224                var instance = $.data( this, fullName );
  • trunk/src/wp-includes/script-loader.php

    r31567 r31569  
    167167
    168168    // full jQuery UI
    169     $scripts->add( 'jquery-ui-core', "/wp-includes/js/jquery/ui/core$dev_suffix.js", array('jquery'), '1.11.2', 1 );
    170     $scripts->add( 'jquery-effects-core', "/wp-includes/js/jquery/ui/effect$dev_suffix.js", array('jquery'), '1.11.2', 1 );
    171 
    172     $scripts->add( 'jquery-effects-blind', "/wp-includes/js/jquery/ui/effect-blind$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    173     $scripts->add( 'jquery-effects-bounce', "/wp-includes/js/jquery/ui/effect-bounce$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    174     $scripts->add( 'jquery-effects-clip', "/wp-includes/js/jquery/ui/effect-clip$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    175     $scripts->add( 'jquery-effects-drop', "/wp-includes/js/jquery/ui/effect-drop$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    176     $scripts->add( 'jquery-effects-explode', "/wp-includes/js/jquery/ui/effect-explode$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    177     $scripts->add( 'jquery-effects-fade', "/wp-includes/js/jquery/ui/effect-fade$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    178     $scripts->add( 'jquery-effects-fold', "/wp-includes/js/jquery/ui/effect-fold$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    179     $scripts->add( 'jquery-effects-highlight', "/wp-includes/js/jquery/ui/effect-highlight$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    180     $scripts->add( 'jquery-effects-puff', "/wp-includes/js/jquery/ui/effect-puff$dev_suffix.js", array('jquery-effects-core', 'jquery-effects-scale'), '1.11.2', 1 );
    181     $scripts->add( 'jquery-effects-pulsate', "/wp-includes/js/jquery/ui/effect-pulsate$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    182     $scripts->add( 'jquery-effects-scale', "/wp-includes/js/jquery/ui/effect-scale$dev_suffix.js", array('jquery-effects-core', 'jquery-effects-size'), '1.11.2', 1 );
    183     $scripts->add( 'jquery-effects-shake', "/wp-includes/js/jquery/ui/effect-shake$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    184     $scripts->add( 'jquery-effects-size', "/wp-includes/js/jquery/ui/effect-size$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    185     $scripts->add( 'jquery-effects-slide', "/wp-includes/js/jquery/ui/effect-slide$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    186     $scripts->add( 'jquery-effects-transfer', "/wp-includes/js/jquery/ui/effect-transfer$dev_suffix.js", array('jquery-effects-core'), '1.11.2', 1 );
    187 
    188     $scripts->add( 'jquery-ui-accordion', "/wp-includes/js/jquery/ui/accordion$dev_suffix.js", array('jquery-ui-core', 'jquery-ui-widget'), '1.11.2', 1 );
    189     $scripts->add( 'jquery-ui-autocomplete', "/wp-includes/js/jquery/ui/autocomplete$dev_suffix.js", array('jquery-ui-menu'), '1.11.2', 1 );
    190     $scripts->add( 'jquery-ui-button', "/wp-includes/js/jquery/ui/button$dev_suffix.js", array('jquery-ui-core', 'jquery-ui-widget'), '1.11.2', 1 );
    191     $scripts->add( 'jquery-ui-datepicker', "/wp-includes/js/jquery/ui/datepicker$dev_suffix.js", array('jquery-ui-core'), '1.11.2', 1 );
    192     $scripts->add( 'jquery-ui-dialog', "/wp-includes/js/jquery/ui/dialog$dev_suffix.js", array('jquery-ui-resizable', 'jquery-ui-draggable', 'jquery-ui-button', 'jquery-ui-position'), '1.11.2', 1 );
    193     $scripts->add( 'jquery-ui-draggable', "/wp-includes/js/jquery/ui/draggable$dev_suffix.js", array('jquery-ui-mouse'), '1.11.2', 1 );
    194     $scripts->add( 'jquery-ui-droppable', "/wp-includes/js/jquery/ui/droppable$dev_suffix.js", array('jquery-ui-draggable'), '1.11.2', 1 );
    195     $scripts->add( 'jquery-ui-menu', "/wp-includes/js/jquery/ui/menu$dev_suffix.js", array( 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-position' ), '1.11.2', 1 );
    196     $scripts->add( 'jquery-ui-mouse', "/wp-includes/js/jquery/ui/mouse$dev_suffix.js", array( 'jquery-ui-core', 'jquery-ui-widget' ), '1.11.2', 1 );
    197     $scripts->add( 'jquery-ui-position', "/wp-includes/js/jquery/ui/position$dev_suffix.js", array('jquery'), '1.11.2', 1 );
    198     $scripts->add( 'jquery-ui-progressbar', "/wp-includes/js/jquery/ui/progressbar$dev_suffix.js", array('jquery-ui-core', 'jquery-ui-widget'), '1.11.2', 1 );
    199     $scripts->add( 'jquery-ui-resizable', "/wp-includes/js/jquery/ui/resizable$dev_suffix.js", array('jquery-ui-mouse'), '1.11.2', 1 );
    200     $scripts->add( 'jquery-ui-selectable', "/wp-includes/js/jquery/ui/selectable$dev_suffix.js", array('jquery-ui-mouse'), '1.11.2', 1 );
    201     $scripts->add( 'jquery-ui-selectmenu', "/wp-includes/js/jquery/ui/selectmenu$dev_suffix.js", array('jquery-ui-menu'), '1.11.2', 1 );
    202     $scripts->add( 'jquery-ui-slider', "/wp-includes/js/jquery/ui/slider$dev_suffix.js", array('jquery-ui-mouse'), '1.11.2', 1 );
    203     $scripts->add( 'jquery-ui-sortable', "/wp-includes/js/jquery/ui/sortable$dev_suffix.js", array('jquery-ui-mouse'), '1.11.2', 1 );
    204     $scripts->add( 'jquery-ui-spinner', "/wp-includes/js/jquery/ui/spinner$dev_suffix.js", array( 'jquery-ui-button' ), '1.11.2', 1 );
    205     $scripts->add( 'jquery-ui-tabs', "/wp-includes/js/jquery/ui/tabs$dev_suffix.js", array('jquery-ui-core', 'jquery-ui-widget'), '1.11.2', 1 );
    206     $scripts->add( 'jquery-ui-tooltip', "/wp-includes/js/jquery/ui/tooltip$dev_suffix.js", array( 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-position' ), '1.11.2', 1 );
    207     $scripts->add( 'jquery-ui-widget', "/wp-includes/js/jquery/ui/widget$dev_suffix.js", array('jquery'), '1.11.2', 1 );
     169    $scripts->add( 'jquery-ui-core', "/wp-includes/js/jquery/ui/core$dev_suffix.js", array('jquery'), '1.11.3', 1 );
     170    $scripts->add( 'jquery-effects-core', "/wp-includes/js/jquery/ui/effect$dev_suffix.js", array('jquery'), '1.11.3', 1 );
     171
     172    $scripts->add( 'jquery-effects-blind', "/wp-includes/js/jquery/ui/effect-blind$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     173    $scripts->add( 'jquery-effects-bounce', "/wp-includes/js/jquery/ui/effect-bounce$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     174    $scripts->add( 'jquery-effects-clip', "/wp-includes/js/jquery/ui/effect-clip$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     175    $scripts->add( 'jquery-effects-drop', "/wp-includes/js/jquery/ui/effect-drop$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     176    $scripts->add( 'jquery-effects-explode', "/wp-includes/js/jquery/ui/effect-explode$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     177    $scripts->add( 'jquery-effects-fade', "/wp-includes/js/jquery/ui/effect-fade$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     178    $scripts->add( 'jquery-effects-fold', "/wp-includes/js/jquery/ui/effect-fold$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     179    $scripts->add( 'jquery-effects-highlight', "/wp-includes/js/jquery/ui/effect-highlight$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     180    $scripts->add( 'jquery-effects-puff', "/wp-includes/js/jquery/ui/effect-puff$dev_suffix.js", array('jquery-effects-core', 'jquery-effects-scale'), '1.11.3', 1 );
     181    $scripts->add( 'jquery-effects-pulsate', "/wp-includes/js/jquery/ui/effect-pulsate$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     182    $scripts->add( 'jquery-effects-scale', "/wp-includes/js/jquery/ui/effect-scale$dev_suffix.js", array('jquery-effects-core', 'jquery-effects-size'), '1.11.3', 1 );
     183    $scripts->add( 'jquery-effects-shake', "/wp-includes/js/jquery/ui/effect-shake$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     184    $scripts->add( 'jquery-effects-size', "/wp-includes/js/jquery/ui/effect-size$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     185    $scripts->add( 'jquery-effects-slide', "/wp-includes/js/jquery/ui/effect-slide$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     186    $scripts->add( 'jquery-effects-transfer', "/wp-includes/js/jquery/ui/effect-transfer$dev_suffix.js", array('jquery-effects-core'), '1.11.3', 1 );
     187
     188    $scripts->add( 'jquery-ui-accordion', "/wp-includes/js/jquery/ui/accordion$dev_suffix.js", array('jquery-ui-core', 'jquery-ui-widget'), '1.11.3', 1 );
     189    $scripts->add( 'jquery-ui-autocomplete', "/wp-includes/js/jquery/ui/autocomplete$dev_suffix.js", array('jquery-ui-menu'), '1.11.3', 1 );
     190    $scripts->add( 'jquery-ui-button', "/wp-includes/js/jquery/ui/button$dev_suffix.js", array('jquery-ui-core', 'jquery-ui-widget'), '1.11.3', 1 );
     191    $scripts->add( 'jquery-ui-datepicker', "/wp-includes/js/jquery/ui/datepicker$dev_suffix.js", array('jquery-ui-core'), '1.11.3', 1 );
     192    $scripts->add( 'jquery-ui-dialog', "/wp-includes/js/jquery/ui/dialog$dev_suffix.js", array('jquery-ui-resizable', 'jquery-ui-draggable', 'jquery-ui-button', 'jquery-ui-position'), '1.11.3', 1 );
     193    $scripts->add( 'jquery-ui-draggable', "/wp-includes/js/jquery/ui/draggable$dev_suffix.js", array('jquery-ui-mouse'), '1.11.3', 1 );
     194    $scripts->add( 'jquery-ui-droppable', "/wp-includes/js/jquery/ui/droppable$dev_suffix.js", array('jquery-ui-draggable'), '1.11.3', 1 );
     195    $scripts->add( 'jquery-ui-menu', "/wp-includes/js/jquery/ui/menu$dev_suffix.js", array( 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-position' ), '1.11.3', 1 );
     196    $scripts->add( 'jquery-ui-mouse', "/wp-includes/js/jquery/ui/mouse$dev_suffix.js", array( 'jquery-ui-core', 'jquery-ui-widget' ), '1.11.3', 1 );
     197    $scripts->add( 'jquery-ui-position', "/wp-includes/js/jquery/ui/position$dev_suffix.js", array('jquery'), '1.11.3', 1 );
     198    $scripts->add( 'jquery-ui-progressbar', "/wp-includes/js/jquery/ui/progressbar$dev_suffix.js", array('jquery-ui-core', 'jquery-ui-widget'), '1.11.3', 1 );
     199    $scripts->add( 'jquery-ui-resizable', "/wp-includes/js/jquery/ui/resizable$dev_suffix.js", array('jquery-ui-mouse'), '1.11.3', 1 );
     200    $scripts->add( 'jquery-ui-selectable', "/wp-includes/js/jquery/ui/selectable$dev_suffix.js", array('jquery-ui-mouse'), '1.11.3', 1 );
     201    $scripts->add( 'jquery-ui-selectmenu', "/wp-includes/js/jquery/ui/selectmenu$dev_suffix.js", array('jquery-ui-menu'), '1.11.3', 1 );
     202    $scripts->add( 'jquery-ui-slider', "/wp-includes/js/jquery/ui/slider$dev_suffix.js", array('jquery-ui-mouse'), '1.11.3', 1 );
     203    $scripts->add( 'jquery-ui-sortable', "/wp-includes/js/jquery/ui/sortable$dev_suffix.js", array('jquery-ui-mouse'), '1.11.3', 1 );
     204    $scripts->add( 'jquery-ui-spinner', "/wp-includes/js/jquery/ui/spinner$dev_suffix.js", array( 'jquery-ui-button' ), '1.11.3', 1 );
     205    $scripts->add( 'jquery-ui-tabs', "/wp-includes/js/jquery/ui/tabs$dev_suffix.js", array('jquery-ui-core', 'jquery-ui-widget'), '1.11.3', 1 );
     206    $scripts->add( 'jquery-ui-tooltip', "/wp-includes/js/jquery/ui/tooltip$dev_suffix.js", array( 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-position' ), '1.11.3', 1 );
     207    $scripts->add( 'jquery-ui-widget', "/wp-includes/js/jquery/ui/widget$dev_suffix.js", array('jquery'), '1.11.3', 1 );
    208208
    209209    // deprecated, not used in core, most functionality is included in jQuery 1.3
Note: See TracChangeset for help on using the changeset viewer.