I'm attempting to alter template 'post' to display the show 'History' option (as well as the rest of the posting tools) in a dropdown menu. What I'm finding is that when moving History into the dropdown, the show/hide history toggle no longer functions (i.e., you click it and it doesn't do anything). Here's what I'm working with:
original code was:
as mentioned, the rest of the post options function correctly, but 'History' is the only one giving me problems when housed in the dropdown..
...any suggestions would be helpful.
Code:
<div class="privateControls">
<span class="Popup">
<a rel="Menu"></a>
<div class="Menu postmoremenu">
<ul class="secondaryContent blockLinksList postmorecontent">
...
<xen:if is="{$post.edit_count} && {$post.canViewHistory}"><a href="{xen:link posts/history, $post}" class="item control history ToggleTrigger"><span></span>{xen:phrase history}</a></xen:if>
...
</ul>
</div>
</span>
</div>
original code was:
Code:
<div class="privateControls">
...
<xen:if is="{$post.edit_count} && {$post.canViewHistory}"><a href="{xen:link posts/history, $post}" class="item control history ToggleTrigger"><span></span>{xen:phrase history}</a></xen:if>
...
</div>
as mentioned, the rest of the post options function correctly, but 'History' is the only one giving me problems when housed in the dropdown..
...any suggestions would be helpful.
Last edited: