Changes for page Attachments
Last modified by Sebastian Marsching on 2024/01/08 23:13
From version 12.1
edited by Sebastian Marsching
on 2024/01/08 23:13
on 2024/01/08 23:13
Change comment:
Install extension [org.xwiki.platform:xwiki-platform-attachment-ui/15.10.4]
To version 8.1
edited by Sebastian Marsching
on 2023/02/20 12:47
on 2023/02/20 12:47
Change comment:
Install extension [org.xwiki.platform:xwiki-platform-attachment-ui/14.10.4]
Summary
-
Objects (3 modified, 0 added, 0 removed)
Details
- XWiki.JavaScriptExtension[0]
-
- Code
-
... ... @@ -123,7 +123,7 @@ 123 123 hasErrors = true; 124 124 } 125 125 const beforeUploadEvent = Event.fire(document, 'xwiki:actions:beforeUpload', { 126 - file: fileInput .files[0]126 + file: fileInput 127 127 }); 128 128 129 129 if (beforeUploadEvent.defaultPrevented) {
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -27,7 +27,7 @@ 27 27 .gallery_attachmentbox { 28 28 background: $theme.pageContentBackgroundColor; 29 29 border: 1px solid $theme.borderColor; 30 - border-radius: 8px;30 + border-radius: 5px; 31 31 float: left; 32 32 margin: ${boxMargin}px; 33 33 overflow: hidden; ... ... @@ -49,7 +49,7 @@ 49 49 .gallery_attachmenttitle { 50 50 background: $theme.backgroundSecondaryColor; 51 51 border-bottom: 1px dotted $theme.borderColor; 52 - border-radius: 8px8px 0px 0px;52 + border-radius: 5px 5px 0px 0px; 53 53 font-size: 85%; 54 54 padding: 3px ${boxPadding}px; 55 55 overflow: hidden;
- XWiki.WikiMacroClass[0]
-
- Macro code
-
... ... @@ -33,7 +33,7 @@ 33 33 #set ($property = "$!{xcontext.macro.params.property}") 34 34 #set ($object = $numbertool.toNumber("$!{xcontext.macro.params.object}").intValue()) 35 35 #if ("$!{object}" != $!{xcontext.macro.params.object}) 36 - #set ($object = ${ targetdoc.getObject($classname).number})36 + #set ($object = ${doc.getObject($classname).number}) 37 37 #if ("$!{object}" == '') 38 38 #set ($object = 0) 39 39 #end ... ... @@ -94,7 +94,7 @@ 94 94 #set ($savemode = 'form') 95 95 #end 96 96 97 -#set ($propValue = "$!{ targetdoc.getObject($classname, $object).getProperty($property).value}")97 +#set ($propValue = "$!{doc.getObject($classname, $object).getProperty($property).value}") 98 98 ## 99 99 100 100 #macro (attachmentPicker_displayAttachment $name $displayImage $withLink $forceElement)