MySpaces webscript now shows Ajax wait animation while loading inner panel area.

Summary pop-up panel fade-out anim removed (improves user experience).
Reorg of broken action evaluator class hiearchy (after ML UI changes).
More fixes to ML UI (browse.jsp missing component IDs breaks screen when panels collapsed then expanded).
Code reorg in interceptors to help performance.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5772 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2007-05-24 11:08:53 +00:00
parent dd0544389c
commit 156ff56ed9
17 changed files with 381 additions and 322 deletions

View File

@@ -216,7 +216,7 @@ Alfresco.InfoPanel.prototype =
if (this.popupElement != null && this.visible == true)
{
// fade out and set the visiblilty flag on complete of the anim
var fxAnim = new Fx.Style(this.popupElement, 'opacity',
/*var fxAnim = new Fx.Style(this.popupElement, 'opacity',
{
duration: 300,
transition: Fx.Transitions.linear,
@@ -225,7 +225,10 @@ Alfresco.InfoPanel.prototype =
this.element.panel.visible = false;
}
});
fxAnim.start(1, 0);
fxAnim.start(1, 0);*/
this.popupElement.setStyle("opacity", 0);
this.popupElement.setStyle("display", "none");
this.popupElement.panel.visible = false;
}
}
}