send_node_as_email_input

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 "send_node_as_email_input".
... in reply.naml
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
<macro name="send_node_as_email_input">
    <script type="text/javascript">
        function addFirstAddress() {
            $('#add-another-address').show();
            addAddress();
        };
        function removeAddress(e) {
            $(e).parent().parent().remove();
            var s = $('#address-list table tr').size();
            if (s == 0)
                $('#add-another-address').hide();
            Nabble.resizeFrames();
        };
        function addAddress() {
            $('#address-list').append('<n.javascript_string_encode.remove_spaces_between_tags.send_node_as_email_input_row email=""/>');
            Nabble.resizeFrames();
        };
    </script>
    <a href="javascript: void(0)" onclick="addFirstAddress()"><t>Email this post to...</t></a>
    <div id="add-another-address" class="extra-field-details medium-border-color" style="[n.if.not.has_parameter name='email-to'][then]display:none[/then][/n.if.not.has_parameter]">
        <div id="address-list">
            <n.get_parameter_values. name="email-to">
                <n.loop.send_node_as_email_input_row.current_parameter_value/>
            </n.get_parameter_values.>
        </div>
        <a href="javascript: void addAddress()"><t>Add another address</t></a>
        &nbsp;
        <span class="weak-color">(<t>one email per input box</t>)</span>
    </div>
</macro>