topic_view_option

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 "topic_view_option".
... in topic.naml
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
<macro name="topic_view_option" parameters="name,value,image,url">
    <n.put_in_head.>
        <script type="text/javascript">
            Nabble.setView = function(view,url,post) {
                Nabble.setVar("tview",view);
                if (url.indexOf('#') == -1)
                    url += '#none';
                location.replace(url);
            };
        </script>
    </n.put_in_head.>
 
    <n.topic_view_option_td value="[n.value/]" url="[n.url/]" style="padding-right:.1em">
        <contents><img src="/images/[n.image/]" width="18" height="18" style="border:none" alt="[n.value/]"/></contents>
    </n.topic_view_option_td>
 
    <n.topic_view_option_td value="[n.value/]" url="[n.url/]" style="padding-right:1.1em">
        <contents><n.name/></contents>
    </n.topic_view_option_td>
</macro>