unpin_topic_link

   Usages of this macro
... in topic.naml
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
<macro name="unpin_topic_link" requires="node" dot_parameter="text" parameters="title, class">
    <n.put_in_head
Binary
Namespace: HtmlNamespace
Parameters: in_head
.>
        <script type="text/javascript">
            Nabble.unpinTopic = function(id) {
                var call = '/'+'template/NamlServlet.jtp?macro=unpin_topic&node=' + id;
                $.getScript(call, function() {
                    $('#pin-icon').hide();
                    NabbleDropdown.hide('unpinTopic');
                    NabbleDropdown.show('pinTopic');
                    alert('<t>This topic has been unpinned.</t>');
                });
            };
        </script>
    </n.put_in_head.>
    <a href="javascript: void Nabble.unpinTopic([n.id
Binary
Namespace: NodeNamespace
/])" class="[n.class/]" rel="nofollow" title="[n.title/]"><n.default
Binary
Namespace: BasicNamespace
Parameters: to, text
. to="[t]Unpin topic[/t]"><n.text/></n.default.></a>
</macro>