mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 01:09:39 +01:00
c2a613422c
git-svn-id: http://svn.automattic.com/wordpress/trunk@4041 1a063a9b-81f0-0310-95a4-ce76da25c4cd
17 lines
698 B
JavaScript
17 lines
698 B
JavaScript
addLoadEvent(function() {
|
|
if (!theList.theList) return false;
|
|
document.forms.addcat.submit.onclick = function(e) {return killSubmit('theList.ajaxAdder("cat", "addcat");', e); };
|
|
theList.addComplete = function(what, where, update) {
|
|
var name = getNodeValue(theList.ajaxAdd.responseXML, 'name');
|
|
var id = getNodeValue(theList.ajaxAdd.responseXML, 'id');
|
|
var options = document.forms['addcat'].category_parent.options;
|
|
options[options.length] = new Option(name, id);
|
|
};
|
|
theList.delComplete = function(what, id) {
|
|
var options = document.forms['addcat'].category_parent.options;
|
|
for ( var o = 0; o < options.length; o++ )
|
|
if ( id == options[o].value )
|
|
options[o] = null;
|
|
};
|
|
});
|