diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-18 01:10:48 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-18 01:10:48 +0000 |
commit | 77185dd4c67761afbe670a15928c523f4de2842b (patch) | |
tree | 6e1dfe8cc8e602be22534d3451050c0b5ab687ec | |
parent | 5854fe194a35e1bbf2feb6db415f54f33def2dd9 (diff) |
A little more specific selector for notice reply
-rw-r--r-- | js/util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/util.js b/js/util.js index 854d25060..17ae4c071 100644 --- a/js/util.js +++ b/js/util.js @@ -235,7 +235,7 @@ $(document).ready(function(){ }); function NoticeReply() { - if ($('#notice_data-text').length > 0 && $('.notice_reply').length > 0) { + if ($('#notice_data-text').length > 0 && $('#content .notice_reply').length > 0) { $('#content .notice').each(function() { var notice = $(this)[0]; $($('.notice_reply', notice)[0]).click(function() { |