SWF-1068 - Spring.RemotingHandler handleResponse method should use a display:none span element

This commit is contained in:
Jeremy Grelle
2009-03-23 14:18:51 +00:00
parent ff783d3de7
commit 0a062cba37
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -308,7 +308,7 @@ dojo.declare("Spring.RemotingHandler", Spring.AbstractRemotingHandler, {
//Extract the new DOM nodes from the response
var tempSpan = dojo.doc.createElement("span");
tempSpan.id="ajaxResponse";
tempSpan.style.visibility= "hidden";
tempSpan.style.display= "none";
document.body.appendChild(tempSpan);
tempSpan.innerHTML=response;
var tempContainer = new dojo.NodeList(tempSpan);