summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-06-18 01:10:48 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-06-18 01:10:48 +0000
commit77185dd4c67761afbe670a15928c523f4de2842b (patch)
tree6e1dfe8cc8e602be22534d3451050c0b5ab687ec /js
parent5854fe194a35e1bbf2feb6db415f54f33def2dd9 (diff)
A little more specific selector for notice reply
Diffstat (limited to 'js')
-rw-r--r--js/util.js2
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() {