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

git-svn-id: http://svn.automattic.com/wordpress/trunk@9520 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2008-11-05 01:44:10 +00:00
parent 65f0830a83
commit e3a58568f8
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">
<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="replybtn" style="display:none;"><?php _e('Submit Reply'); ?></span></a>
<img class="waiting" style="display:none;" src="images/loading.gif" alt="" />

View File

@ -74,7 +74,7 @@ function tag_press_key( e ) {
(function($){
tagCloud = {
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() {

View File

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