editor_quote_button

NAML documentation   Watch a video
   Usages of this macro
... 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
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.not
Binary
Namespace: BasicNamespace
Parameters: condition
.is_empty
Binary
Namespace: BasicNamespace
Parameters: value
.original_text>
        <then>
            <n.put_in_head
Binary
Namespace: HtmlNamespace
Parameters: 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
Binary
Namespace: BasicNamespace
Parameters: text
.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
Macro
Parameters: use_title, delay, contents, position
 use_title="true"/>
            </td>
        </then>
    </n.if.not.is_empty.original_text>
</macro>