Make WordPress Core


Ignore:
Timestamp:
02/27/2007 03:24:54 PM (18 years ago)
Author:
markjaquith
Message:

trailing tabs and whitespace cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/custom-header.php

    r4910 r4953  
    1818    function js_includes() {
    1919        wp_enqueue_script('cropper');
    20         wp_enqueue_script('colorpicker');   
     20        wp_enqueue_script('colorpicker');
    2121    }
    2222
     
    116116        pickColor('<?php echo HEADER_TEXTCOLOR; ?>');
    117117    }
    118    
     118
    119119    function hide_text() {
    120120        $('name').style.display = 'none';
     
    127127        Event.observe( $('hidetext'), 'click', show_text );
    128128    }
    129    
     129
    130130    function show_text() {
    131131        $('name').style.display = 'block';
     
    135135        $('textcolor').value = '<?php echo HEADER_TEXTCOLOR; ?>';
    136136        $('hidetext').value = '<?php _e('Hide Text'); ?>';
    137         Event.stopObserving( $('hidetext'), 'click', show_text );   
     137        Event.stopObserving( $('hidetext'), 'click', show_text );
    138138        Event.observe( $('hidetext'), 'click', hide_text );
    139139    }
Note: See TracChangeset for help on using the changeset viewer.