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

git-svn-id: https://develop.svn.wordpress.org/trunk@9520 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2008-11-05 01:44:10 +00:00
parent 88370af289
commit baac11eb10
3 changed files with 3 additions and 3 deletions

View File

@ -2020,7 +2020,7 @@ function wp_comment_reply($position = '1', $checkbox = false, $mode = 'single',
<p id="replysubmit"> <p id="replysubmit">
<a href="#comments-form" class="cancel button" tabindex="106"><?php _e('Cancel'); ?></a> <a href="#comments-form" class="cancel button" tabindex="106"><?php _e('Cancel'); ?></a>
<a href="#comments-form" class="save button" tabindex="105"> <a href="#comments-form" class="save button" tabindex="104">
<span id="savebtn" style="display:none;"><?php _e('Save'); ?></span> <span id="savebtn" style="display:none;"><?php _e('Save'); ?></span>
<span id="replybtn" style="display:none;"><?php _e('Submit Reply'); ?></span></a> <span id="replybtn" style="display:none;"><?php _e('Submit Reply'); ?></span></a>
<img class="waiting" style="display:none;" src="images/loading.gif" alt="" /> <img class="waiting" style="display:none;" src="images/loading.gif" alt="" />

View File

@ -74,7 +74,7 @@ function tag_press_key( e ) {
(function($){ (function($){
tagCloud = { tagCloud = {
init : function() { init : function() {
$('#tagcloud-link').click(function(){tagCloud.get(); return false;}); $('#tagcloud-link').click(function(){tagCloud.get(); $(this).unbind().click(function(){return false;}); return false;});
}, },
get : function() { get : function() {

View File

@ -2270,7 +2270,7 @@ fieldset {
#replysubmit { #replysubmit {
margin: 0; margin: 0;
padding: 5px; padding: 7px;
border-top-width: 1px; border-top-width: 1px;
border-top-style: solid; border-top-style: solid;
} }