...
- Open content.xsl for editing (../uportal-war/src/main/resources/layout/theme/universality/content.xsl)
- Uncomment the areas below ("UNCOMMENT FOR MINIMIZE CONROL"):
Code Block lang xml <xsl:if test="not(//focused) and @minimized='false'"> <!-- Focus. --> <!-- UNCOMMENT FOR MINIMIZE CONTROL <a href="{$BASE_ACTION_URL}?uP_root=root&uP_tcattr=minimized&minimized_channelId={@ID}&minimized_{@ID}_value=true&uP_save=all" title="{$TOKEN[@name='PORTLET_MINIMIZE_LONG_LABEL']}" class="up-portlet-control minimize"> <span><xsl:value-of select="$TOKEN[@name='PORTLET_MINIMIZE_LABEL']"/></span> </a> --> <a href="{$BASE_ACTION_URL}?uP_root={@ID}" title="{$TOKEN[@name='PORTLET_MAXIMIZE_LONG_LABEL']}" class="up-portlet-control focus"> <span><xsl:value-of select="$TOKEN[@name='PORTLET_MAXIMIZE_LABEL']"/></span> </a> </xsl:if> <xsl:if test="@minimized='true'"> <!-- Return from Minimized. --> <!-- UNCOMMENT FOR UNMINIMIZE CONTROL <a href="{$BASE_ACTION_URL}?uP_root=root&uP_tcattr=minimized&minimized_channelId={@ID}&minimized_{@ID}_value=false&uP_save=all" title=" {$TOKEN[@name='PORTLET_RETURN_LONG_LABEL']}" class="up-portlet-control return"> <span><xsl:value-of select="$TOKEN[@name='PORTLET_RETURN_LABEL']"/></span> </a> --> </xsl:if>