mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- AWC-1090: Resources not added or removed to/from the package if the transition buttons were clicked before Save Changes.
- Fix for popup summary panel since dojo upgrade git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4986 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -38,7 +38,7 @@ function showNodeInfoHandler(type, data, evt)
|
||||
var div = document.createElement("div");
|
||||
|
||||
// get the position of the element we are showing info for
|
||||
var pos = dojo.style.getAbsolutePosition(_launchElement, false);
|
||||
var pos = dojo.html.getAbsolutePosition(_launchElement, false);
|
||||
|
||||
// setup the div with the correct appearance
|
||||
div.innerHTML = data;
|
||||
@@ -52,7 +52,7 @@ function showNodeInfoHandler(type, data, evt)
|
||||
|
||||
// is there a better way of doing this, dojo.dom.insertBefore??
|
||||
var body = document.getElementsByTagName("body")[0];
|
||||
dojo.style.setOpacity(div, 0);
|
||||
dojo.html.setOpacity(div, 0);
|
||||
_popupElement = div;
|
||||
body.appendChild(div);
|
||||
|
||||
|
Reference in New Issue
Block a user