2006-01-10 23:49:11 +01:00
|
|
|
<?php
|
2006-03-18 01:38:37 +01:00
|
|
|
require_once('../wp-config.php');
|
2006-01-30 22:39:20 +01:00
|
|
|
header('Content-type: text/javascript; charset=' . get_settings('blog_charset'), true);
|
2006-01-10 23:49:11 +01:00
|
|
|
?>
|
2006-04-04 02:16:27 +02:00
|
|
|
addLoadEvent(function(){catList=new listMan('categorychecklist');catList.ajaxRespEl='jaxcat';catList.topAdder=1;catList.alt=0;catList.showLink=0;});
|
2006-03-29 03:51:55 +02:00
|
|
|
addLoadEvent(newCatAddIn);
|
2006-01-10 06:16:17 +01:00
|
|
|
function newCatAddIn() {
|
|
|
|
if ( !document.getElementById('jaxcat') ) return false;
|
|
|
|
var ajaxcat = document.createElement('span');
|
|
|
|
ajaxcat.id = 'ajaxcat';
|
|
|
|
|
|
|
|
newcat = document.createElement('input');
|
|
|
|
newcat.type = 'text';
|
|
|
|
newcat.name = 'newcat';
|
|
|
|
newcat.id = 'newcat';
|
|
|
|
newcat.size = '16';
|
|
|
|
newcat.setAttribute('autocomplete', 'off');
|
2006-03-29 03:51:55 +02:00
|
|
|
newcat.onkeypress = function(e) { return killSubmit("catList.ajaxAdder('category','categorydiv');", e); };
|
2006-01-10 06:16:17 +01:00
|
|
|
|
|
|
|
var newcatSub = document.createElement('input');
|
|
|
|
newcatSub.type = 'button';
|
|
|
|
newcatSub.name = 'Button';
|
|
|
|
newcatSub.id = 'catadd';
|
2006-03-29 03:51:55 +02:00
|
|
|
newcatSub.value = 'Add';
|
|
|
|
newcatSub.onclick = function() { catList.ajaxAdder('category', 'categorydiv'); };
|
2006-01-10 06:16:17 +01:00
|
|
|
|
|
|
|
ajaxcat.appendChild(newcat);
|
|
|
|
ajaxcat.appendChild(newcatSub);
|
|
|
|
document.getElementById('jaxcat').appendChild(ajaxcat);
|
|
|
|
|
|
|
|
howto = document.createElement('span');
|
2006-03-29 03:51:55 +02:00
|
|
|
howto.innerHTML = "<?php _e('Separate multiple categories with commas.'); ?>";
|
2006-01-10 06:16:17 +01:00
|
|
|
howto.id = 'howto';
|
|
|
|
ajaxcat.appendChild(howto);
|
|
|
|
}
|