From 1563b4659c0cbfa0bde9325cc7e67e3f70f6deac Mon Sep 17 00:00:00 2001 From: wei <> Date: Fri, 30 Mar 2007 05:12:40 +0000 Subject: fix #564, take 2 --- demos/quickstart/protected/controls/Comments/comments.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'demos/quickstart/protected/controls') diff --git a/demos/quickstart/protected/controls/Comments/comments.js b/demos/quickstart/protected/controls/Comments/comments.js index 307a7ba2..75cbd482 100644 --- a/demos/quickstart/protected/controls/Comments/comments.js +++ b/demos/quickstart/protected/controls/Comments/comments.js @@ -95,9 +95,9 @@ function show_comments(block) function show_block(block) { - while(block && block.className && block.className.indexOf("block-content") < 0) + while(block && block.className.indexOf("block-content") < 0) block = block.parentNode; - if(block && block.className && block.className.indexOf("block-content") >= 0) + if(block && block.className.indexOf("block-content") >= 0) { block.addClassName('block-hover'); var tag = $('tag-'+block.id); @@ -108,9 +108,9 @@ function show_block(block) function hide_block(block) { - while(block && block.className && block.className.indexOf("block-hover") < 0) + while(block && block.className.indexOf("block-hover") < 0) block = block.parentNode; - if(block && block.className && block.className.indexOf("block-hover") >= 0) + if(block && block.className.indexOf("block-hover") >= 0) { block.removeClassName('block-hover'); var tag = $('tag-'+block.id); @@ -173,7 +173,7 @@ function get_comment_count(id) if(!Prado.Browser.ie) //not IE 4,5,6 { - (function() + Event.OnLoad(function() { var userComments = $('user-comments'); userComments.style.position="absolute"; @@ -203,5 +203,5 @@ if(!Prado.Browser.ie) //not IE 4,5,6 Event.observe($('all-comments-link'), "click", function(e) { show_all_comments(); Event.stop(e); }); Event.observe($('close-comments'), "click", function(e) { hide_add_comment(); Event.stop(e); }); - })(); + }); } \ No newline at end of file -- cgit v1.2.3