Changeset 8443

Show
Ignore:
Timestamp:
07/24/08 22:01:54 (3 months ago)
Author:
mdawaffe
Message:

crazyhorse: disable inbox clicks for now

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/crazyhorse/wp-admin/inbox.php

    r8282 r8443  
    4242        <td><?php 
    4343            if ( $item->href ) 
    44                 echo "<a href='$item->href'>"; 
     44                echo "<a href='$item->href' class='no-crazy'>"; 
    4545            echo wp_specialchars( $item->text ); 
    4646            if ( strlen( $item->text ) > 180 ) // crazyhorse 
  • branches/crazyhorse/wp-admin/includes/dashboard.php

    r8423 r8443  
    471471                <p><?php 
    472472                    if ( $item->href ) 
    473                         echo "<a href='$item->href'>"; 
     473                        echo "<a href='$item->href' class='no-crazy'>"; 
    474474                    echo wp_specialchars( $item->text ); 
    475475                    if ( strlen( $item->text ) > 180 ) // crazyhorse 
  • branches/crazyhorse/wp-admin/js/common.js

    r8379 r8443  
    1414        jQuery('form.validate').submit( function() { return wpAjax.validateForm( jQuery(this) ); } ); 
    1515    } 
     16 
     17    jQuery('a.no-crazy').click( function() { 
     18        alert( "This feature isn't enabled in this prototype." ); 
     19        return false; 
     20    } ); 
    1621}); 
    1722