remove_button

NAML documentation   Watch a video
Error Found
An error was found in the NAML code of this application – View Details | Go to NAML Editor
tag 'mailing_list_etiquette' is not an allowed here, only these are allowed: [bottom, page_name, focus]
  in new_post(custom_tweak:reply:2) - <n.new_post>
  in (custom_tweak:reply:1) - <override_macro name="reply" requires="servlet">
   Usages of this macro
... in macro_viewer.naml
597
598
599
600
601
602
603
604
605
606
607
608
609
<macro name="remove_button" requires="macro_source">
    <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.is_custom_tweak
Binary
Namespace: MacroSourceNamespace
>
        <then>
            <button id="removeButton" class="toolbar" style="font-weight:bold" onclick="removeOverride()">
                <img src="/images/remove_sm.png" style="width:15px;height:15px;vertical-align:-25%"/>
                <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.is_override
Binary
Namespace: MacroSourceNamespace
>
                    <then>Remove override</then>
                    <else>Remove macro</else>
                </n.if.is_override>
            </button>
        </then>
    </n.if.is_custom_tweak>
</macro>