mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Minor fix to positioning code in pop-up info panel javascript
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5537 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -13,7 +13,6 @@ var zIndex = 99;
|
||||
*/
|
||||
Alfresco.NodeInfoManager = function()
|
||||
{
|
||||
//YAHOO.util.Event.addListener(window, "resize", this.resize);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -118,7 +117,7 @@ Alfresco.NodeInfoPanel.prototype =
|
||||
{
|
||||
success: this.loadNodeInfoHandler,
|
||||
failure: handleErrorYahoo, // global error handler
|
||||
argument: [this.nodeRef, this]
|
||||
argument: [this]
|
||||
},
|
||||
"noderef=" + this.nodeRef);
|
||||
}
|
||||
@@ -134,7 +133,7 @@ Alfresco.NodeInfoPanel.prototype =
|
||||
*/
|
||||
loadNodeInfoHandler: function(response)
|
||||
{
|
||||
var panel = response.argument[1];
|
||||
var panel = response.argument[0];
|
||||
|
||||
// create a 'div' to hold the summary table
|
||||
var div = document.createElement("div");
|
||||
|
Reference in New Issue
Block a user