mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Create site
- Shows spinner during create HTML upload - works in profile page - returns filename in callback and highlights file after upload.get.html.400.ftl Flash upload.get.html.400.ftl - includes highlightFile after upload.get.html.400.ftl for single upload and update git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10513 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -3,9 +3,9 @@
|
||||
<title>Upload failure</title>
|
||||
</head>
|
||||
<body>
|
||||
<#if (args.failure?exists)>
|
||||
<#if (args.failureCallback?exists)>
|
||||
<script type="text/javascript">
|
||||
${args.failure}
|
||||
${args.failureCallback}.call(${args.failureScope}, {});
|
||||
</script>
|
||||
</#if>
|
||||
</body>
|
@@ -3,9 +3,9 @@
|
||||
<title>Upload success</title>
|
||||
</head>
|
||||
<body>
|
||||
<#if (args.success?exists)>
|
||||
<#if (args.successCallback?exists)>
|
||||
<script type="text/javascript">
|
||||
${args.success}
|
||||
${args.successCallback}.call(${args.successScope}, {nodeRef: "${document.nodeRef}"});
|
||||
</script>
|
||||
</#if>
|
||||
</body>
|
||||
|
@@ -0,0 +1,12 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Upload success</title>
|
||||
</head>
|
||||
<body>
|
||||
<#if (args.successCallback?exists)>
|
||||
<script type="text/javascript">
|
||||
${args.successCallback}.call(${args.successScope}, {nodeRef: "${image.nodeRef}"});
|
||||
</script>
|
||||
</#if>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user