mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
bug 7956: when copy action info from middle menu item to right panel, hide spinning wheel in right panel if spinning wheel in middle menu item id hidden.
This commit is contained in:
parent
256e26ff61
commit
5f1d54b978
@ -506,14 +506,17 @@ function copyActionInfoFromMidMenuToRightPanel($midmenuItem1) {
|
||||
}
|
||||
|
||||
var $midMenuSpinningWheel = $midmenuItem1.find("#spinning_wheel");
|
||||
if($midMenuSpinningWheel.css("display") != "none") {
|
||||
var $detailsTabSpinningWheel = $("#right_panel_content #tab_content_details").find("#spinning_wheel");
|
||||
var $detailsTabSpinningWheel = $("#right_panel_content #tab_content_details").find("#spinning_wheel");
|
||||
if($midMenuSpinningWheel.css("display") != "none") {
|
||||
if($detailsTabSpinningWheel.css("display") == "none") {
|
||||
var inProcessText = $midMenuSpinningWheel.data("inProcessText");
|
||||
$detailsTabSpinningWheel.find("#description").text(inProcessText);
|
||||
$detailsTabSpinningWheel.show();
|
||||
}
|
||||
}
|
||||
else {
|
||||
$detailsTabSpinningWheel.hide();
|
||||
}
|
||||
}
|
||||
|
||||
//***** actions for middle menu (end) **************************************************************************
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user