menu_delete

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_delete".
... in dropdown.naml
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
<macro name="menu_delete" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('deleteApp', '<n.javascript_string_encode.delete_link/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.visitor.can_edit.local_node>
                <then>
                    NabbleDropdown.show('deleteApp');
                </then>
            </n.if.visitor.can_edit.local_node>
        </else>
    </n.if.is_in_command>
</macro>