Make WordPress Core


Ignore:
Timestamp:
08/08/2005 01:13:22 AM (19 years ago)
Author:
matt
Message:

Draw more attention to the messages, which now blend in a little with the header. TODO: Put all messages in an array, abstract out HTML

File:
1 edited

Legend:

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

    r2761 r2762  
    2626    extended_valid_elements : "a[id|href|title|onclick],img[class|src|alt|title|width|height|align]",
    2727    plugins : "emotions"
    28     do_action('mce_options');
     28    <?php do_action('mce_options'); ?>
    2929});
    3030</script>
     
    3333<script type="text/javascript">
    3434//<![CDATA[
     35
     36function addLoadEvent(func) {
     37  var oldonload = window.onload;
     38  if (typeof window.onload != 'function') {
     39    window.onload = func;
     40  } else {
     41    window.onload = function() {
     42      oldonload();
     43      func();
     44    }
     45  }
     46}
    3547
    3648<?php if ( isset($xfn) ) : ?>
     
    8193}
    8294
    83 window.onload = blurry;
     95addLoadEvent(blurry);
     96
    8497<?php endif; ?>
    8598
     
    87100//]]>
    88101</script>
    89 
     102<script type="text/javascript" src="fat.js"></script>
    90103<?php if ( isset( $editing ) ) : ?>
    91104<script type="text/javascript" src="dbx.js"></script>
Note: See TracChangeset for help on using the changeset viewer.