remove_button

NAML documentation   Watch a video
   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>