//reduced informations block and added click to see more link

This commit is contained in:
vAugagneur
2013-01-16 11:07:29 +01:00
parent 2ea46c15a6
commit a2eda82603
2 changed files with 9 additions and 3 deletions
+8 -3
View File
@@ -50,9 +50,14 @@
{if isset($informations) && count($informations) && $informations}
<div class="hint clear" style="display:block;">
{foreach $informations as $info}
{$info}<br />
{/foreach}
<span id="see_more_infos">
<b><a href="#" style="color:#00529B;" onclick="$('#see_more_infos').hide(); $('#infos_block').show();return false;">{l s='Click here to see more informations'}</a></b>
</span>
<div id="infos_block" style="display:none;">
{foreach $informations as $info}
{$info}<br />
{/foreach}
</div>
</div><br />
{/if}