Changeset 31569
- Timestamp:
- 02/27/2015 10:20:18 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 41 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r31564 r31569 2849 2849 2850 2850 /*! 2851 * jQuery UI Draggable/Sortable 1.11. 22851 * jQuery UI Draggable/Sortable 1.11.3 2852 2852 * http://jqueryui.com 2853 2853 * 2854 * Copyright 2014jQuery Foundation and other contributors2854 * Copyright jQuery Foundation and other contributors 2855 2855 * Released under the MIT license. 2856 2856 * http://jquery.org/license … … 2859 2859 .ui-sortable-handle { 2860 2860 -ms-touch-action: none; 2861 touch-action: 2861 touch-action: none; 2862 2862 } 2863 2863 -
trunk/src/wp-includes/css/jquery-ui-dialog.css
r30343 r31569 1 1 /*! 2 * jQuery UI CSS Framework 1.11. 22 * jQuery UI CSS Framework 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 94 94 95 95 /*! 96 * jQuery UI Resizable 1.11. 296 * jQuery UI Resizable 1.11.3 97 97 * http://jqueryui.com 98 98 * 99 * Copyright 2014jQuery Foundation and other contributors99 * Copyright jQuery Foundation and other contributors 100 100 * Released under the MIT license. 101 101 * http://jquery.org/license -
trunk/src/wp-includes/css/media-views.css
r31505 r31569 106 106 107 107 /*! 108 * jQuery UI Draggable/Sortable 1.11. 2108 * jQuery UI Draggable/Sortable 1.11.3 109 109 * http://jqueryui.com 110 110 * 111 * Copyright 2014jQuery Foundation and other contributors111 * Copyright jQuery Foundation and other contributors 112 112 * Released under the MIT license. 113 113 * http://jquery.org/license … … 116 116 .ui-sortable-handle { 117 117 -ms-touch-action: none; 118 touch-action: 118 touch-action: none; 119 119 } 120 120 -
trunk/src/wp-includes/js/jquery/ui/accordion.js
r29920 r31569 1 1 /*! 2 * jQuery UI Accordion 1.11. 22 * jQuery UI Accordion 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 26 26 27 27 return $.widget( "ui.accordion", { 28 version: "1.11. 2",28 version: "1.11.3", 29 29 options: { 30 30 active: 0, … … 484 484 "aria-hidden": "true" 485 485 }); 486 toHide.prev().attr( "aria-selected", "false" ); 486 toHide.prev().attr({ 487 "aria-selected": "false", 488 "aria-expanded": "false" 489 }); 487 490 // if we're switching panels, remove the old header from the tab order 488 491 // if we're opening from collapsed state, remove the previous header from the tab order … … 495 498 } else if ( toShow.length ) { 496 499 this.headers.filter(function() { 497 return $( this ).attr( "tabIndex") === 0;500 return parseInt( $( this ).attr( "tabIndex" ), 10 ) === 0; 498 501 }) 499 502 .attr( "tabIndex", -1 ); … … 505 508 .attr({ 506 509 "aria-selected": "true", 507 tabIndex: 0,508 "aria-expanded": "true"510 "aria-expanded": "true", 511 tabIndex: 0 509 512 }); 510 513 }, -
trunk/src/wp-includes/js/jquery/ui/autocomplete.js
r29920 r31569 1 1 /*! 2 * jQuery UI Autocomplete 1.11. 22 * jQuery UI Autocomplete 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 28 28 29 29 $.widget( "ui.autocomplete", { 30 version: "1.11. 2",30 version: "1.11.3", 31 31 defaultElement: "<input>", 32 32 options: { -
trunk/src/wp-includes/js/jquery/ui/button.js
r29920 r31569 1 1 /*! 2 * jQuery UI Button 1.11. 22 * jQuery UI Button 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 53 53 54 54 $.widget( "ui.button", { 55 version: "1.11. 2",55 version: "1.11.3", 56 56 defaultElement: "<button>", 57 57 options: { … … 349 349 350 350 $.widget( "ui.buttonset", { 351 version: "1.11. 2",351 version: "1.11.3", 352 352 options: { 353 353 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 1 1 /*! 2 * jQuery UI Core 1.11. 22 * jQuery UI Core 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 25 25 26 26 $.extend( $.ui, { 27 version: "1.11. 2",27 version: "1.11.3", 28 28 29 29 keyCode: { … … 98 98 return !!img && visible( img ); 99 99 } 100 return ( / input|select|textarea|button|object/.test( nodeName ) ?100 return ( /^(input|select|textarea|button|object)$/.test( nodeName ) ? 101 101 !element.disabled : 102 102 "a" === nodeName ? -
trunk/src/wp-includes/js/jquery/ui/datepicker.js
r29920 r31569 1 1 /*! 2 * jQuery UI Datepicker 1.11. 22 * jQuery UI Datepicker 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 24 24 }(function( $ ) { 25 25 26 $.extend($.ui, { datepicker: { version: "1.11. 2" } });26 $.extend($.ui, { datepicker: { version: "1.11.3" } }); 27 27 28 28 var datepicker_instActive; … … 390 390 $target.removeClass(this.markerClassName).empty(); 391 391 } 392 393 if ( datepicker_instActive === inst ) { 394 datepicker_instActive = null; 395 } 392 396 }, 393 397 … … 2074 2078 $.datepicker.initialized = false; 2075 2079 $.datepicker.uuid = new Date().getTime(); 2076 $.datepicker.version = "1.11. 2";2080 $.datepicker.version = "1.11.3"; 2077 2081 2078 2082 return $.datepicker; -
trunk/src/wp-includes/js/jquery/ui/dialog.js
r29920 r31569 1 1 /*! 2 * jQuery UI Dialog 1.11. 22 * jQuery UI Dialog 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 31 31 32 32 return $.widget( "ui.dialog", { 33 version: "1.11. 2",33 version: "1.11.3", 34 34 options: { 35 35 appendTo: "body", -
trunk/src/wp-includes/js/jquery/ui/draggable.js
r29920 r31569 1 1 /*! 2 * jQuery UI Draggable 1.11. 22 * jQuery UI Draggable 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 27 27 28 28 $.widget("ui.draggable", $.ui.mouse, { 29 version: "1.11. 2",29 version: "1.11.3", 30 30 widgetEventPrefix: "drag", 31 31 options: { -
trunk/src/wp-includes/js/jquery/ui/droppable.js
r29920 r31569 1 1 /*! 2 * jQuery UI Droppable 1.11. 22 * jQuery UI Droppable 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 28 28 29 29 $.widget( "ui.droppable", { 30 version: "1.11. 2",30 version: "1.11.3", 31 31 widgetEventPrefix: "drop", 32 32 options: { -
trunk/src/wp-includes/js/jquery/ui/effect-blind.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Blind 1.11. 22 * jQuery UI Effects Blind 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-bounce.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Bounce 1.11. 22 * jQuery UI Effects Bounce 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-clip.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Clip 1.11. 22 * jQuery UI Effects Clip 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-drop.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Drop 1.11. 22 * jQuery UI Effects Drop 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-explode.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Explode 1.11. 22 * jQuery UI Effects Explode 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-fade.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Fade 1.11. 22 * jQuery UI Effects Fade 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-fold.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Fold 1.11. 22 * jQuery UI Effects Fold 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-highlight.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Highlight 1.11. 22 * jQuery UI Effects Highlight 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-puff.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Puff 1.11. 22 * jQuery UI Effects Puff 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-pulsate.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Pulsate 1.11. 22 * jQuery UI Effects Pulsate 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-scale.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Scale 1.11. 22 * jQuery UI Effects Scale 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-shake.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Shake 1.11. 22 * jQuery UI Effects Shake 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-size.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Size 1.11. 22 * jQuery UI Effects Size 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-slide.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Slide 1.11. 22 * jQuery UI Effects Slide 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect-transfer.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects Transfer 1.11. 22 * jQuery UI Effects Transfer 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license -
trunk/src/wp-includes/js/jquery/ui/effect.js
r29920 r31569 1 1 /*! 2 * jQuery UI Effects 1.11. 22 * jQuery UI Effects 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 905 905 906 906 $.extend( $.effects, { 907 version: "1.11. 2",907 version: "1.11.3", 908 908 909 909 // Saves a set of properties in a data storage -
trunk/src/wp-includes/js/jquery/ui/menu.js
r29920 r31569 1 1 /*! 2 * jQuery UI Menu 1.11. 22 * jQuery UI Menu 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 27 27 28 28 return $.widget( "ui.menu", { 29 version: "1.11. 2",29 version: "1.11.3", 30 30 defaultElement: "<ul>", 31 31 delay: 300, -
trunk/src/wp-includes/js/jquery/ui/mouse.js
r29920 r31569 1 1 /*! 2 * jQuery UI Mouse 1.11. 22 * jQuery UI Mouse 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 30 30 31 31 return $.widget("ui.mouse", { 32 version: "1.11. 2",32 version: "1.11.3", 33 33 options: { 34 34 cancel: "input,textarea,button,select,option", -
trunk/src/wp-includes/js/jquery/ui/position.js
r29920 r31569 1 1 /*! 2 * jQuery UI Position 1.11. 22 * jQuery UI Position 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 449 449 if ( overTop < 0 ) { 450 450 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 ) ) { 452 452 position.top += myOffset + atOffset + offset; 453 453 } 454 454 } else if ( overBottom > 0 ) { 455 455 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 ) { 457 457 position.top += myOffset + atOffset + offset; 458 458 } -
trunk/src/wp-includes/js/jquery/ui/progressbar.js
r29920 r31569 1 1 /*! 2 * jQuery UI Progressbar 1.11. 22 * jQuery UI Progressbar 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 26 26 27 27 return $.widget( "ui.progressbar", { 28 version: "1.11. 2",28 version: "1.11.3", 29 29 options: { 30 30 max: 100, -
trunk/src/wp-includes/js/jquery/ui/resizable.js
r29920 r31569 1 1 /*! 2 * jQuery UI Resizable 1.11. 22 * jQuery UI Resizable 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 27 27 28 28 $.widget("ui.resizable", $.ui.mouse, { 29 version: "1.11. 2",29 version: "1.11.3", 30 30 widgetEventPrefix: "resize", 31 31 options: { … … 100 100 101 101 // 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)) { 103 103 104 104 this.element.wrap( … … 201 201 } 202 202 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)) { 204 204 205 205 axis = $(this.handles[i], this.element); … … 944 944 } 945 945 946 if ( !continueResize ) {946 if ( !continueResize ) { 947 947 that.position.left = that.prevPosition.left; 948 948 that.position.top = that.prevPosition.top; … … 1166 1166 that.position.left = op.left - ox; 1167 1167 } else { 1168 newWidth = grid Y - outerDimensions.height;1168 newWidth = gridX - outerDimensions.width; 1169 1169 that.size.width = newWidth; 1170 1170 that.position.left = op.left + os.width - newWidth; -
trunk/src/wp-includes/js/jquery/ui/selectable.js
r29920 r31569 1 1 /*! 2 * jQuery UI Selectable 1.11. 22 * jQuery UI Selectable 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 27 27 28 28 return $.widget("ui.selectable", $.ui.mouse, { 29 version: "1.11. 2",29 version: "1.11.3", 30 30 options: { 31 31 appendTo: "body", -
trunk/src/wp-includes/js/jquery/ui/selectmenu.js
r29920 r31569 1 1 /*! 2 * jQuery UI Selectmenu 1.11. 22 * jQuery UI Selectmenu 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 28 28 29 29 return $.widget( "ui.selectmenu", { 30 version: "1.11. 2",30 version: "1.11.3", 31 31 defaultElement: "<select>", 32 32 options: { … … 68 68 69 69 _drawButton: function() { 70 var that = this, 71 tabindex = this.element.attr( "tabindex" ); 70 var that = this; 72 71 73 72 // Associate existing label with the new button … … 86 85 this.button = $( "<span>", { 87 86 "class": "ui-selectmenu-button ui-widget ui-state-default ui-corner-all", 88 tabindex: t abindex || this.options.disabled ? -1 : 0,87 tabindex: this.options.disabled ? -1 : 0, 89 88 id: this.ids.button, 90 89 role: "combobox", … … 596 595 element: option, 597 596 index: index, 598 value: option. attr( "value"),597 value: option.val(), 599 598 label: option.text(), 600 599 optgroup: optgroup.attr( "label" ) || "", -
trunk/src/wp-includes/js/jquery/ui/slider.js
r29920 r31569 1 1 /*! 2 * jQuery UI Slider 1.11. 22 * jQuery UI Slider 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 27 27 28 28 return $.widget( "ui.slider", $.ui.mouse, { 29 version: "1.11. 2",29 version: "1.11.3", 30 30 widgetEventPrefix: "slide", 31 31 … … 548 548 549 549 _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; 552 570 }, 553 571 -
trunk/src/wp-includes/js/jquery/ui/sortable.js
r29920 r31569 1 1 /*! 2 * jQuery UI Sortable 1.11. 22 * jQuery UI Sortable 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 27 27 28 28 return $.widget("ui.sortable", $.ui.mouse, { 29 version: "1.11. 2",29 version: "1.11.3", 30 30 widgetEventPrefix: "sort", 31 31 ready: false, … … 277 277 278 278 //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") { 280 280 this.overflowOffset = this.scrollParent.offset(); 281 281 } … … 329 329 //Do scrolling 330 330 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") { 332 332 333 333 if((this.overflowOffset.top + this.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) { … … 345 345 } else { 346 346 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); 357 357 } 358 358 … … 453 453 454 454 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); 456 456 } 457 457 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); 459 459 } 460 460 this.reverting = true; … … 649 649 if(connectWith && connected) { 650 650 for (i = connectWith.length - 1; i >= 0; i--){ 651 cur = $(connectWith[i] );651 cur = $(connectWith[i], this.document[0]); 652 652 for ( j = cur.length - 1; j >= 0; j--){ 653 653 inst = $.data(cur[j], this.widgetFullName); … … 699 699 if(connectWith && this.ready) { //Shouldn't be run the first time through due to massive slow-down 700 700 for (i = connectWith.length - 1; i >= 0; i--){ 701 cur = $(connectWith[i] );701 cur = $(connectWith[i], this.document[0]); 702 702 for (j = cur.length - 1; j >= 0; j--){ 703 703 inst = $.data(cur[j], this.widgetFullName); … … 991 991 // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that 992 992 // 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])) { 994 994 po.left += this.scrollParent.scrollLeft(); 995 995 po.top += this.scrollParent.scrollTop(); … … 998 998 // This needs to be actually done for all browsers, since pageX/pageY includes this information 999 999 // 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)) { 1001 1001 po = { top: 0, left: 0 }; 1002 1002 } … … 1048 1048 0 - this.offset.relative.left - this.offset.parent.left, 1049 1049 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.top1050 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 1052 1052 ]; 1053 1053 } … … 1074 1074 } 1075 1075 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, 1077 1077 scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName); 1078 1078 … … 1100 1100 pageX = event.pageX, 1101 1101 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); 1103 1103 1104 1104 // This is another very weird special case that only happens for relative elements: … … 1106 1106 // 2. and the scroll parent is the document or similar to the offset parent 1107 1107 // 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])) { 1109 1109 this.offset.relative = this._getRelativeOffset(); 1110 1110 } -
trunk/src/wp-includes/js/jquery/ui/spinner.js
r29920 r31569 1 1 /*! 2 * jQuery UI Spinner 1.11. 22 * jQuery UI Spinner 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 38 38 39 39 return $.widget( "ui.spinner", { 40 version: "1.11. 2",40 version: "1.11.3", 41 41 defaultElement: "<input>", 42 42 widgetEventPrefix: "spin", -
trunk/src/wp-includes/js/jquery/ui/tabs.js
r29920 r31569 1 1 /*! 2 * jQuery UI Tabs 1.11. 22 * jQuery UI Tabs 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 26 26 27 27 return $.widget( "ui.tabs", { 28 version: "1.11. 2",28 version: "1.11.3", 29 29 delay: 300, 30 30 options: { … … 202 202 selectedIndex = this._focusNextTab( selectedIndex, goingForward ); 203 203 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 206 207 // Update aria-selected immediately so that AT think the tab is already selected. 207 208 // 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 1 1 /*! 2 * jQuery UI Tooltip 1.11. 22 * jQuery UI Tooltip 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 27 27 28 28 return $.widget( "ui.tooltip", { 29 version: "1.11. 2",29 version: "1.11.3", 30 30 options: { 31 31 content: function() { -
trunk/src/wp-includes/js/jquery/ui/widget.js
r29920 r31569 1 1 /*! 2 * jQuery UI Widget 1.11. 22 * jQuery UI Widget 1.11.3 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 2014jQuery Foundation and other contributors5 * Copyright jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license … … 191 191 returnValue = this; 192 192 193 // allow multiple hashes to be passed on init194 options = !isMethodCall && args.length ?195 $.widget.extend.apply( null, [ options ].concat(args) ) :196 options;197 198 193 if ( isMethodCall ) { 199 194 this.each(function() { … … 220 215 }); 221 216 } 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 222 223 this.each(function() { 223 224 var instance = $.data( this, fullName ); -
trunk/src/wp-includes/script-loader.php
r31567 r31569 167 167 168 168 // 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 ); 208 208 209 209 // deprecated, not used in core, most functionality is included in jQuery 1.3
Note: See TracChangeset
for help on using the changeset viewer.