]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/categories.js
Wordpress 3.6-scripts
[autoinstalls/wordpress.git] / wp-admin / js / categories.js
index 3cee6c68e2ffd3de189216cff4a92e2dc322ef8b..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,16 +0,0 @@
-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, transport) {
-               var name = getNodeValue(transport.responseXML, 'name').unescapeHTML();
-               var id = transport.responseXML.getElementsByTagName(what)[0].getAttribute('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;
-       };
-});