root_post_dropdown

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 "root_post_dropdown".
... in social_dropdown_links.naml
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<override_macro name="root_post_dropdown" requires="node">
    <n.dropdown.
        id="rootdropdown[n.id/]"
        text="[t]Options[/t]"
        title="[t]Click for more options[/t]"
        loadOnClick="/template/NamlServlet.jtp?macro=root_post_dropdown_later&node=[n.id/]"
    >
        <n.menu_topic_subscription/>
        <n.menu_reply_to_author/>
        <n.menu_edit_post/>
        <n.menu_move_post/>
        <n.menu_delete_topic/>
        <n.menu_pin_topic/>
        <n.menu_unpin_topic/>
        <n.menu_lock_topic/>
        <n.menu_unlock_topic/>
        <n.menu_change_post_date/>
        <n.menu_change_title_and_meta_tags/>
        <n.menu_embed_post/>
        <n.menu_print_post/>
        <n.menu_permalink/>
        <n.menu_raw_mail/>
        <n.menu_social/>
    </n.dropdown.>
</override_macro>
Overrides default macro
... in dropdown.naml
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<macro name="root_post_dropdown" requires="node">
    <n.dropdown.
        id="rootdropdown[n.id/]"
        text="[t]Options[/t]"
        title="[t]Click for more options[/t]"
        loadOnClick="/template/NamlServlet.jtp?macro=root_post_dropdown_later&node=[n.id/]"
    >
        <n.menu_topic_subscription/>
        <n.menu_reply_to_author/>
        <n.menu_edit_post/>
        <n.menu_move_post/>
        <n.menu_delete_topic/>
        <n.menu_pin_topic/>
        <n.menu_unpin_topic/>
        <n.menu_lock_topic/>
        <n.menu_unlock_topic/>
        <n.menu_change_post_date/>
        <n.menu_change_title_and_meta_tags/>
        <n.menu_embed_post/>
        <n.menu_print_post/>
        <n.menu_permalink/>
        <n.menu_raw_mail/>
    </n.dropdown.>
</macro>