From 7d3b249fee718c87afc5b4e1e40810a16c70bd3a Mon Sep 17 00:00:00 2001 From: Michael Foster Date: Mon, 16 Sep 2013 06:44:33 +1000 Subject: [PATCH] small bugfixes --- js/quick-reply.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/quick-reply.js b/js/quick-reply.js index 376c44fd..28e24d3d 100644 --- a/js/quick-reply.js +++ b/js/quick-reply.js @@ -259,10 +259,11 @@ var show_quick_reply = function(){ } $postForm.find('th .close-btn').click(function() { + $origPostForm.find('textarea[name="body"]').attr('id', 'body'); $postForm.remove(); }); - $postForm.show(); + // $postForm.show(); $(window).trigger('quick-reply'); $(window).ready(function() { @@ -278,7 +279,7 @@ var show_quick_reply = function(){ if ($('link#stylesheet').attr('href')) { $('link#stylesheet')[0].onload = do_css; } - }); + }).scroll(); }); };