Make WordPress Core

Changeset 9520


Ignore:
Timestamp:
11/05/2008 01:44:10 AM (16 years ago)
Author:
azaozz
Message:

Fixes for choose tag from tag cloud and reply to comment from admin

Location:
trunk/wp-admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/template.php

    r9517 r9520  
    20212021    <p id="replysubmit">
    20222022    <a href="#comments-form" class="cancel button" tabindex="106"><?php _e('Cancel'); ?></a>
    2023     <a href="#comments-form" class="save button" tabindex="105">
     2023    <a href="#comments-form" class="save button" tabindex="104">
    20242024    <span id="savebtn" style="display:none;"><?php _e('Save'); ?></span>
    20252025    <span id="replybtn" style="display:none;"><?php _e('Submit Reply'); ?></span></a>
  • trunk/wp-admin/js/post.js

    r9518 r9520  
    7575    tagCloud = {
    7676        init : function() {
    77             $('#tagcloud-link').click(function(){tagCloud.get(); return false;});
     77            $('#tagcloud-link').click(function(){tagCloud.get(); $(this).unbind().click(function(){return false;}); return false;});
    7878        },
    7979
  • trunk/wp-admin/wp-admin.css

    r9518 r9520  
    22712271#replysubmit {
    22722272    margin: 0;
    2273     padding: 5px;
     2273    padding: 7px;
    22742274    border-top-width: 1px;
    22752275    border-top-style: solid;
Note: See TracChangeset for help on using the changeset viewer.