Skip to content

Commit

Permalink
misc js updates for new section
Browse files Browse the repository at this point in the history
  • Loading branch information
tvroom committed Jan 8, 2008
1 parent 268f178 commit 7313bb1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions plugins/Ajax/htdocs/images/common.js
Expand Up @@ -1183,10 +1183,12 @@ function firehose_add_update_timerid(timerid) {
function firehose_collapse_entry(id) {
var fhbody = $('fhbody-'+id);
var fh = $('firehose-'+id);
if (fhbody.className == "body") {
if (fhbody && fhbody.className == "body") {
fhbody.className = "hide";
}
if (fh) {
fh.className = "briefarticle";
}
}
tagsHideBody(id)

}
Expand Down

0 comments on commit 7313bb1

Please sign in to comment.