$(document).ready(function () { $("form#forum_add_user").submit(function () { forum.access_users('add', $('input', this).val()); $('input', this).val(''); return false; }); $("a#forum_edit_").click(function () { show("topic_edit"); return false; }); $("a#topic_edit_users_").click(function () { show("topic_edit_users"); forum.access_users('load', ''); return false; }); $('#forum_new_loetav_2').click(function () { $('div#piiratud_users_box').show(); }) }); var forum = { access_users: function (action, user) { $('#forum_access_users').html('<img src="/files/itnurk/pics/loading.gif" alt="" style="height: 15px; vertical-align: text-top;" />'); $.post('/voorum/ajax/access/', { 'action' : action, 'user' : user, 'id' : topic_id }, function (data) { if (typeof(_gat) == "object") { pageTracker._trackPageview("/voorum/ajax/access/"); } var html = ''; if (typeof(data.users) != 'undefined') { for (i in data.users) { html += '<a href="/nurklane/'+data.users[i]+'/" class="no-under black">'+data.users[i]+'</a>'; if (data.access == 1) { html += '<a href="#'+i+'" class="forum_access_delete" style="margin-left: 2px;"><img src="/files/itnurk/pics/x_tume.png" alt="[x]" style="vertical-align: text-top;" /></a>'; } html += ' &nbsp;'; } } if (data.message.length > 0) { if (data.success == true) { /* html += '<div style="margin-bottom: 7px;" class="bold">'+data.message+'</div>'; */ } else { html += '<div style="margin-bottom: 7px; color: red;" class="bold">'+data.message+'</div>'; } } $('#forum_access_users').html(html); $('#forum_access_users a.forum_access_delete').click(function () { forum.access_users('delete', $(this).attr('href').replace('#', '')); return false; }); }, 'json'); } }