From bf3696b5956f1cab865823911fc267d5e3cadd88 Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 2 Nov 2016 10:00:29 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=B4=E5=90=A7=E5=88=A0=E9=99=A4=E6=98=BE?= =?UTF-8?q?=E9=9A=90js=E6=8E=A7=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/memos/show.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/memos/show.html.erb b/app/views/memos/show.html.erb index b142d7e08..25732c36b 100644 --- a/app/views/memos/show.html.erb +++ b/app/views/memos/show.html.erb @@ -114,9 +114,9 @@ }); $(".homepagePostReplyDes").mouseover(function(){ - $(this).children().eq(1).children().eq(1).show(); + $(this).find("a[id*='delete_memo_reply']").show(); }).mouseout(function(){ - $(this).children().eq(1).children().eq(1).hide(); + $(this).find("a[id*='delete_memo_reply']").hide(); });