diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-06-18 06:02:54 -0400 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-06-18 06:02:54 -0400 |
commit | c442b400b985cb9e30bf036007bcffc96807d5a3 (patch) | |
tree | aebb66931d6f15336df8bfcf05202b37ee4aff43 /js/util.js | |
parent | 65b4cfbb54f5b44820dd02bb9c3c2ca98dbbd321 (diff) | |
parent | 87f54c1136fa4ddc476baad0adeaf1b4e7097cc5 (diff) |
Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev into 0.8.x
Diffstat (limited to 'js/util.js')
-rw-r--r-- | js/util.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/util.js b/js/util.js index ce0c20d31..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) { + 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() { @@ -308,4 +308,4 @@ function NoticeAttachments() { $(this).closest(".entry-title").removeClass('ov'); } ); -}
\ No newline at end of file +} |