menu_unpin_topic

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "menu_unpin_topic".
... in dropdown.naml
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
<macro name="menu_unpin_topic" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('unpinTopic', '<n.javascript_string_encode.unpin_topic_link/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.both condition1="[n.local_node.is_pinned/]" condition2="[n.visitor.can_manage_pinned_topics_in.local_node/]">
                <then>
                    NabbleDropdown.show('unpinTopic');
                </then>
            </n.if.both>
        </else>
    </n.if.is_in_command>
</macro>