new UI - Resources page - fix a bug that clicking zone arrow icon didn't show pod and systemVM in IE7.

This commit is contained in:
Jessica Wang 2010-10-12 10:17:58 -07:00
parent 99526ec468
commit 2df194dfa7
1 changed files with 2 additions and 2 deletions

View File

@ -183,10 +183,10 @@ function afterLoadResourceJSP() {
switch (action) {
case "zone_expand" :
if (target.hasClass("zonetree_closedarrows")) {
$("#zone_"+id+" #zone_content").show();
$("#zone_"+id).find("#zone_content").show();
target.removeClass().addClass("zonetree_openarrows");
} else {
$("#zone_"+id+" #zone_content").hide();
$("#zone_"+id).find("#zone_content").hide();
target.removeClass().addClass("zonetree_closedarrows");
}
break;