db981a3b27
* This moves our "development" versions from .dev.js to .js (same for css). * The compressed version then moves from .js to .min.js (same for css). By switching to the standard .min convention, it sets expectations for developers, and works nicely with existing tools such as ack. fixes #21633. git-svn-id: https://develop.svn.wordpress.org/trunk@21592 602fd350-edb4-49c9-b593-d223f7449a82
35 lines
948 B
JavaScript
35 lines
948 B
JavaScript
jQuery(document).ready(function($) {
|
|
var options = false, addAfter, delBefore, delAfter;
|
|
if ( document.forms['addcat'].category_parent )
|
|
options = document.forms['addcat'].category_parent.options;
|
|
|
|
addAfter = function( r, settings ) {
|
|
var name, id;
|
|
|
|
name = $("<span>" + $('name', r).text() + "</span>").text();
|
|
id = $('cat', r).attr('id');
|
|
options[options.length] = new Option(name, id);
|
|
}
|
|
|
|
delAfter = function( r, settings ) {
|
|
var id = $('cat', r).attr('id'), o;
|
|
for ( o = 0; o < options.length; o++ )
|
|
if ( id == options[o].value )
|
|
options[o] = null;
|
|
}
|
|
|
|
delBefore = function(s) {
|
|
if ( 'undefined' != showNotice )
|
|
return showNotice.warn() ? s : false;
|
|
|
|
return s;
|
|
}
|
|
|
|
if ( options )
|
|
$('#the-list').wpList( { addAfter: addAfter, delBefore: delBefore, delAfter: delAfter } );
|
|
else
|
|
$('#the-list').wpList({ delBefore: delBefore });
|
|
|
|
$('.delete a[class^="delete"]').live('click', function(){return false;});
|
|
});
|