mirror of https://github.com/apache/cloudstack.git
new UI - left zone tree - zone node - arrow icon is too small to click. Extend arrow-affected area to the whole zone node.
This commit is contained in:
parent
ee902f4e75
commit
0988f50de8
|
|
@ -56,7 +56,7 @@ function buildZoneTree() {
|
|||
else if(target.hasClass("expanded_open")) {
|
||||
target.removeClass("expanded_open").addClass("expanded_close");
|
||||
target.parent().parent().siblings("#zone_content").hide();
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case "pod_arrow" :
|
||||
|
|
@ -73,6 +73,7 @@ function buildZoneTree() {
|
|||
|
||||
case "zone_name_label":
|
||||
case "zone_name":
|
||||
target.siblings("#zone_arrow").click();
|
||||
selectTreeNodeInLeftMenu(target.parent().parent().parent());
|
||||
var $leftmenuItem1 = target.parent().parent().parent().parent();
|
||||
showPage($("#zone_page"), $leftmenuItem1);
|
||||
|
|
@ -80,6 +81,7 @@ function buildZoneTree() {
|
|||
|
||||
case "pod_name_label" :
|
||||
case "pod_name" :
|
||||
target.siblings("#pod_arrow").click();
|
||||
selectTreeNodeInLeftMenu(target.parent().parent().parent());
|
||||
var $leftmenuItem1 = target.parent().parent().parent().parent();
|
||||
showPage($("#pod_page"), $leftmenuItem1);
|
||||
|
|
|
|||
Loading…
Reference in New Issue