- 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:
Gavin Cornwell
2007-01-31 15:44:38 +00:00
parent 39f1eebcf0
commit 5b92ec9b0b
2 changed files with 37 additions and 30 deletions

View File

@@ -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);