fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2011-05-05 04:30 am

[dw-free] QuickReply shifted to the right in ColorSide (jquery beta)

[commit: http://hg.dwscoalition.org/dw-free/rev/780539c2a252]

http://bugs.dwscoalition.org/show_bug.cgi?id=3658

Display inline to avoid being shifted out of the way by floated elements.

Patch by [personal profile] fu.

Files modified:
  • htdocs/js/jquery.quickreply.js
--------------------------------------------------------------------------------
diff -r 252651fab8ff -r 780539c2a252 htdocs/js/jquery.quickreply.js
--- a/htdocs/js/jquery.quickreply.js	Tue May 03 18:07:05 2011 +0800
+++ b/htdocs/js/jquery.quickreply.js	Thu May 05 12:30:33 2011 +0800
@@ -29,7 +29,7 @@ function update(data,widget) {
     if ( ! customsubject || cur_subject == "" )
         subject.val(data.subject);
 
-    $("#qrdiv").show().appendTo(widget);
+    $("#qrdiv").show().css("display", "inline").appendTo(widget);
     widget.show();
     $("#body").focus();
     
--------------------------------------------------------------------------------