summaryrefslogtreecommitdiffstats
path: root/wp-admin/categories.js
diff options
context:
space:
mode:
Diffstat (limited to 'wp-admin/categories.js')
-rw-r--r--wp-admin/categories.js17
1 files changed, 14 insertions, 3 deletions
diff --git a/wp-admin/categories.js b/wp-admin/categories.js
index 46ae62f..a636961 100644
--- a/wp-admin/categories.js
+++ b/wp-admin/categories.js
@@ -1,5 +1,16 @@
-addLoadEvent(newCategoryAddIn);
-function newCategoryAddIn() {
+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;
+ };
+});