// this file shoudl contain all the scripts used in the post/edit page function new_tag_remove_tag() { var id = jQuery( this ).attr( 'id' ); var num = id.substr( 10 ); var current_tags = jQuery( '#tags-input' ).val().split(','); delete current_tags[num]; var new_tags = []; jQuery.each( current_tags, function( key, val ) { if ( val && !val.match(/^\s+$/) && '' != val ) { new_tags = new_tags.concat( val ); } }); jQuery( '#tags-input' ).val( new_tags.join( ',' ).replace( /\s*,+\s*/, ',' ).replace( /,+/, ',' ).replace( /,+\s+,+/, ',' ).replace( /,+\s*$/, '' ).replace( /^\s*,+/, '' ) ); tag_update_quickclicks(); return false; } function tag_update_quickclicks() { var current_tags = jQuery( '#tags-input' ).val().split(','); jQuery( '#tagchecklist' ).empty(); shown = false; // jQuery.merge( current_tags, current_tags ); // this doesn't work anymore, need something to array_unique jQuery.each( current_tags, function( key, val ) { val = val.replace( /^\s+/, '' ).replace( /\s+$/, '' ); // trim if ( !val.match(/^\s+$/) && '' != val ) { txt = 'X ' + val + ' '; jQuery( '#tagchecklist' ).append( txt ); jQuery( '#tag-check-' + key ).click( new_tag_remove_tag ); shown = true; } }); if ( shown ) jQuery( '#tagchecklist' ).prepend( 'Tags used on this post:
' ); } function tag_flush_to_text() { var newtags = jQuery('#tags-input').val() + ',' + jQuery('#newtag').val(); // massage newtags = newtags.replace( /\s+,+\s*/g, ',' ).replace( /,+/g, ',' ).replace( /,+\s+,+/g, ',' ).replace( /,+\s*$/g, '' ).replace( /^\s*,+/g, '' ); jQuery('#tags-input').val( newtags ); tag_update_quickclicks(); jQuery('#newtag').val(''); jQuery('#newtag').blur(); return false; } function tag_press_key( e ) { if ( 13 == e.keyCode ) { tag_flush_to_text(); return false; } } addLoadEvent( function() { jQuery('#tags-input').hide(); tag_update_quickclicks(); // add the quickadd form jQuery('#jaxtag').prepend('Separate tags with commas'); jQuery('#tagadd').click( tag_flush_to_text ); // jQuery('#newtag').keydown( tag_press_key ); jQuery('#newtag').focus(function() { if ( this.value == 'Add new tag' ) { this.value = ''; this.style.color = '#333'; } }); jQuery('#newtag').blur(function() { if ( this.value == '' ) { this.value = 'Add new tag'; this.style.color = '#999' } }); // auto-suggest stuff jQuery('#newtag').suggest( 'admin-ajax.php?action=ajax-tag-search', { onSelect: tag_flush_to_text } ); });