Some minor Office add-in usability updates (actions available for search results and workflow resources)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6787 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mike Hatfield
2007-09-14 12:34:50 +00:00
parent 4c3222257e
commit 003eb483d6
8 changed files with 58 additions and 12 deletions

View File

@@ -91,7 +91,7 @@ var OfficeAddin =
},
/* AJAX call to perform server-side actions */
runAction: function(useTemplate, Action, Doc, Msg)
runAction: function(useTemplate, Action, Doc, Msg, extraParams)
{
if (Msg != "" && !confirm(Msg))
{
@@ -114,6 +114,7 @@ var OfficeAddin =
{
href += (href.indexOf("?") == -1) ? "?" : "&";
href += "st=" + encodeURI(textResponse);
href += "&" + extraParams;
}
window.location.href = href;
}