Fixes U4-2254 [Object object] error when selecting media link for content.

This commit is contained in:
Sebastiaan Janssen
2013-06-03 15:08:56 -02:00
parent 159d605434
commit dc2554c6d0

View File

@@ -89,7 +89,8 @@ function openMedia(id) {
{
if (dd.ContentType.Alias.ToLower() == "folder")
{
xNode.Action = "javascript:jQuery('.umbTree #" + dd.Id.ToString() + "').click();";
//#U4-2254 - Inspiration to use void from here: http://stackoverflow.com/questions/4924383/jquery-object-object-error
xNode.Action = "javascript:void jQuery('.umbTree #" + dd.Id.ToString() + "').click();";
}
else
{