summaryrefslogtreecommitdiffstats
path: root/wp-admin/categories.js
blob: 8951df0fb7b34e492b59f81e6f4e3364c40dd743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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');

		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;

	};

});