editor_quote_button

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 "editor_quote_button".
... in text_editor.naml
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<macro name="editor_quote_button" parameters="original_text">
    <n.if.not.is_empty.original_text>
        <then>
            <n.put_in_head.>
                <script type="text/javascript">
                    Nabble.quoteOriginal = function(f) {
                        var $m = $("[name='message']");
                        $m.val($m.val() + $('#original').val());
                        $m.focus();
                    };
                </script>
            </n.put_in_head.>
            <td class="nowrap">
                <input type="hidden" id="original" name="original" value="[n.encode.original_text/]"/>
                <button type="button" onclick="Nabble.quoteOriginal()" class="toolbar" title="[t]Quote the original message[/t]">
                    <img src="/images/quote.png" border="0" height="12" alt="Quote" style="vertical-align:middle"/>
                    <t>Quote</t>
                </button>
                <n.tooltip use_title="true"/>
            </td>
        </then>
    </n.if.not.is_empty.original_text>
</macro>