menu_reply_to_author

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_reply_to_author".
... in dropdown.naml
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
<macro name="menu_reply_to_author" requires="node">
    <n.if.owner.is_authenticated>
        <then>
            <n.if.is_in_command name="dropdown">
                <then>
                    dropdown.add('replyToAuthor<n.id/>', '<n.javascript_string_encode.reply_to_author_link/>', 'display:none');
                </then>
                <else>
                    <n.set_local_node.this_node/>
                    <n.if.not.visitor.equals.local_node.owner>
                        <then>
                            NabbleDropdown.show('replyToAuthor<n.local_node.id/>');
                        </then>
                    </n.if.not.visitor.equals.local_node.owner>
                </else>
            </n.if.is_in_command>
        </then>
    </n.if.owner.is_authenticated>
</macro>