Make WordPress Core


Ignore:
Timestamp:
10/04/2010 04:19:18 PM (13 years ago)
Author:
ryan
Message:

jQuery UI 1.8.5. Props demetris. fixes #12863

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/script-loader.php

    r15709 r15711  
    119119    $scripts->add( 'jquery', '/wp-includes/js/jquery/jquery.js', false, '1.4.2');
    120120
    121     $scripts->add( 'jquery-ui-core', '/wp-includes/js/jquery/ui.core.js', array('jquery'), '1.7.3' );
     121    $scripts->add( 'jquery-ui-core', '/wp-includes/js/jquery/ui.core.js', array('jquery'), '1.8.5' );
    122122    $scripts->add_data( 'jquery-ui-core', 'group', 1 );
    123123
    124     $scripts->add( 'jquery-ui-tabs', '/wp-includes/js/jquery/ui.tabs.js', array('jquery-ui-core'), '1.7.3' );
     124    $scripts->add( 'jquery-ui-position', '/wp-includes/js/jquery/ui.position.js', array('jquery'), '1.8.5' );
     125    $scripts->add_data( 'jquery-ui-position', 'group', 1 );
     126
     127    $scripts->add( 'jquery-ui-widget', '/wp-includes/js/jquery/ui.widget.js', array('jquery'), '1.8.5' );
     128    $scripts->add_data( 'jquery-ui-widget', 'group', 1 );
     129
     130    $scripts->add( 'jquery-ui-mouse', '/wp-includes/js/jquery/ui.mouse.js', array('jquery', 'jquery-ui-widget'), '1.8.5' );
     131    $scripts->add_data( 'jquery-ui-mouse', 'group', 1 );
     132
     133    $scripts->add( 'jquery-ui-button', '/wp-includes/js/jquery/ui.button.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.8.5' );
     134    $scripts->add_data( 'jquery-ui-button', 'group', 1 );
     135
     136    $scripts->add( 'jquery-ui-tabs', '/wp-includes/js/jquery/ui.tabs.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.8.5' );
    125137    $scripts->add_data( 'jquery-ui-tabs', 'group', 1 );
    126138
    127     $scripts->add( 'jquery-ui-sortable', '/wp-includes/js/jquery/ui.sortable.js', array('jquery-ui-core'), '1.7.3' );
     139    $scripts->add( 'jquery-ui-sortable', '/wp-includes/js/jquery/ui.sortable.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.8.5' );
    128140    $scripts->add_data( 'jquery-ui-sortable', 'group', 1 );
    129141
    130     $scripts->add( 'jquery-ui-draggable', '/wp-includes/js/jquery/ui.draggable.js', array('jquery-ui-core'), '1.7.3' );
     142    $scripts->add( 'jquery-ui-draggable', '/wp-includes/js/jquery/ui.draggable.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.8.5' );
    131143    $scripts->add_data( 'jquery-ui-draggable', 'group', 1 );
    132144
    133     $scripts->add( 'jquery-ui-droppable', '/wp-includes/js/jquery/ui.droppable.js', array('jquery-ui-core'), '1.7.3' );
     145    $scripts->add( 'jquery-ui-droppable', '/wp-includes/js/jquery/ui.droppable.js', array('jquery-ui-core', 'jquery-ui-mouse', 'jquery-ui-draggable'), '1.8.5' );
    134146    $scripts->add_data( 'jquery-ui-droppable', 'group', 1 );
    135147
    136     $scripts->add( 'jquery-ui-selectable', '/wp-includes/js/jquery/ui.selectable.js', array('jquery-ui-core'), '1.7.3' );
     148    $scripts->add( 'jquery-ui-selectable', '/wp-includes/js/jquery/ui.selectable.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.8.5' );
    137149    $scripts->add_data( 'jquery-ui-selectable', 'group', 1 );
    138150
    139     $scripts->add( 'jquery-ui-resizable', '/wp-includes/js/jquery/ui.resizable.js', array('jquery-ui-core'), '1.7.3' );
     151    $scripts->add( 'jquery-ui-resizable', '/wp-includes/js/jquery/ui.resizable.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.8.5' );
    140152    $scripts->add_data( 'jquery-ui-resizable', 'group', 1 );
    141153
    142     $scripts->add( 'jquery-ui-dialog', '/wp-includes/js/jquery/ui.dialog.js', array('jquery-ui-resizable', 'jquery-ui-draggable'), '1.7.3' );
     154    $scripts->add( 'jquery-ui-dialog', '/wp-includes/js/jquery/ui.dialog.js', array('jquery-ui-resizable', 'jquery-ui-draggable', 'jquery-ui-button', 'jquery-ui-position'), '1.8.5' );
    143155    $scripts->add_data( 'jquery-ui-dialog', 'group', 1 );
    144156
Note: See TracChangeset for help on using the changeset viewer.