Make WordPress Core

Ticket #32017: 32017.diff

File 32017.diff, 4.5 KB (added by michalzuber, 10 years ago)

Replaced strings 'hndle' to 'handle'

  • wp-admin/css/common.css

     
    699699------------------------------------------------------------------------------*/
    700700
    701701.widget .widget-top,
    702 .postbox .hndle,
    703 .stuffbox .hndle,
     702.postbox .handle,
     703.stuffbox .handle,
    704704.control-section .accordion-section-title,
    705705.sidebar-name,
    706706#nav-menu-header,
     
    720720        color: #23282d;
    721721}
    722722
    723 .postbox .hndle,
    724 .stuffbox .hndle {
     723.postbox .handle,
     724.stuffbox .handle {
    725725        border-bottom: 1px solid #eee;
    726726}
    727727
     
    17811781}
    17821782
    17831783.js .widget .widget-top,
    1784 .js .postbox .hndle {
     1784.js .postbox .handle {
    17851785        cursor: move;
    17861786}
    17871787
    1788 .hndle a {
     1788.handle a {
    17891789        font-size: 11px;
    17901790        font-weight: normal;
    17911791}
     
    18131813}
    18141814
    18151815/* user-select is not a part of the CSS standard - may change behavior in the future */
    1816 .postbox .hndle,
    1817 .stuffbox .hndle {
     1816.postbox .handle,
     1817.stuffbox .handle {
    18181818        -webkit-user-select: none;
    18191819        -moz-user-select: none;
    18201820        -ms-user-select: none;
  • wp-admin/css/dashboard.css

     
    972972
    973973/* Make the browser nags easier to read with Open Sans */
    974974
    975 #dashboard_browser_nag h3.hndle {
     975#dashboard_browser_nag h3.handle {
    976976        border: none;
    977977        font-weight: 600;
    978978        font-size: 20px;
  • wp-admin/css/ie.css

     
    260260        border: 1px solid #dfdfdf;
    261261}
    262262
    263 #wpbody-content .postbox .hndle {
     263#wpbody-content .postbox .handle {
    264264        margin-bottom: -1px;
    265265}
    266266
  • wp-admin/edit-form-comment.php

     
    7171
    7272<div id="postbox-container-1" class="postbox-container">
    7373<div id="submitdiv" class="stuffbox" >
    74 <h3><span class="hndle"><?php _e('Status') ?></span></h3>
     74<h3><span class="handle"><?php _e('Status') ?></span></h3>
    7575<div class="inside">
    7676<div class="submitbox" id="submitcomment">
    7777<div id="minor-publishing">
  • wp-admin/includes/template.php

     
    10691069                                        echo '<div id="' . $box['id'] . '" class="postbox ' . postbox_classes($box['id'], $page) . $hidden_class . '" ' . '>' . "\n";
    10701070                                        if ( 'dashboard_browser_nag' != $box['id'] )
    10711071                                                echo '<div class="handlediv" title="' . esc_attr__('Click to toggle') . '"><br /></div>';
    1072                                         echo "<h3 class='hndle'><span>{$box['title']}</span></h3>\n";
     1072                                        echo "<h3 class='handle'><span>{$box['title']}</span></h3>\n";
    10731073                                        echo '<div class="inside">' . "\n";
    10741074                                        call_user_func($box['callback'], $object, $box);
    10751075                                        echo "</div>\n";
     
    11671167                                        }
    11681168                                        ?>
    11691169                                        <li class="control-section accordion-section <?php echo $hidden_class; ?> <?php echo $open_class; ?> <?php echo esc_attr( $box['id'] ); ?>" id="<?php echo esc_attr( $box['id'] ); ?>">
    1170                                                 <h3 class="accordion-section-title hndle" tabindex="0">
     1170                                                <h3 class="accordion-section-title handle" tabindex="0">
    11711171                                                        <?php echo esc_html( $box['title'] ); ?>
    11721172                                                        <span class="screen-reader-text"><?php _e( 'Press return or enter to expand' ); ?></span>
    11731173                                                </h3>
  • wp-admin/js/postbox.js

     
    1111
    1212                        self.init(page, args);
    1313
    14                         $('.postbox .hndle, .postbox .handlediv').bind('click.postboxes', function() {
     14                        $('.postbox .handle, .postbox .handlediv').bind('click.postboxes', function() {
    1515                                var p = $(this).parent('.postbox'), id = p.attr('id');
    1616
    1717                                if ( 'dashboard_browser_nag' == id )
     
    3232                                $document.trigger( 'postbox-toggled', p );
    3333                        });
    3434
    35                         $('.postbox .hndle a').click( function(e) {
     35                        $('.postbox .handle a').click( function(e) {
    3636                                e.stopPropagation();
    3737                        });
    3838
     
    7979                                placeholder: 'sortable-placeholder',
    8080                                connectWith: '.meta-box-sortables',
    8181                                items: '.postbox',
    82                                 handle: '.hndle',
     82                                handle: '.handle',
    8383                                cursor: 'move',
    8484                                delay: ( isMobile ? 200 : 0 ),
    8585                                distance: 2,