Make WordPress Core


Ignore:
Timestamp:
01/03/2008 01:34:11 AM (17 years ago)
Author:
matt
Message:

New tag interface, tag auto-suggest while typing. Rough - suggest and parts of JS should probably be refactored. Hat tip: jhodgdon.

File:
1 edited

Legend:

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

    r6512 r6542  
    8181        $this->add( 'jquery-form', '/wp-includes/js/jquery/jquery.form.js', array('jquery'), '1.0.3');
    8282        $this->add( 'interface', '/wp-includes/js/jquery/interface.js', array('jquery'), '1.2');
     83        $this->add( 'dimensions', '/wp-includes/js/jquery/jquery.dimensions.min.js', array('jquery'), '1.1.2');
     84        $this->add( 'suggest', '/wp-includes/js/jquery/suggest.js', array('dimensions'), '1.1');
    8385
    8486        if ( is_admin() ) {
     
    130132            $this->add( 'xfn', '/wp-admin/js/xfn.js', false, '3517' );
    131133            $this->add( 'upload', '/wp-admin/js/upload.js', array('jquery'), '20070518' );
     134            $this->add( 'post', '/wp-admin/js/post.js', array('suggest'), '20080102' );
    132135            $this->localize( 'upload', 'uploadL10n', array(
    133136                'browseTitle' => attribute_escape(__('Browse your files')),
Note: See TracChangeset for help on using the changeset viewer.