Mercurial > public > sg101
view media/js/comments.js @ 125:903ae6168071
Bio: added odd/even styling to profiles. Make member's list viewable to logged in users only.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 14 Nov 2009 20:09:17 +0000 |
parents | 10d6182b9f6e |
children | b0d62247c3e4 |
line wrap: on
line source
$(document).ready(function() { $('#comment-form-post').click(function () { $(this).attr('disabled', 'disabled').val('Posting Comment...'); $.post('/comments/post/', { comment : $('#id_comment').val(), content_type : $('#id_content_type').val(), object_pk : $('#id_object_pk').val() }, function (data, textStatus) { $('#id_comment').val(''); $('#comment-list').append(data); var lastLi = $('#comment-list > li:last'); lastLi.hide(); lastLi.fadeIn(3000); $('#comment-form-post').removeAttr('disabled').val('Post Comment'); var count = $('#comment-count'); if (count.length) { count.html(parseInt(count.html()) + 1); } }, 'html'); return false; }); $('a.comment-flag').click(function () { var id = this.id; if (id.match(/fc-(\d+)/)) { id = RegExp.$1; if (confirm('Only flag a comment if you feel it is spam, abuse, violates site rules, ' + 'or is not appropriate. ' + 'A moderator will be notified and will review the comment. ' + 'Are you sure you want to flag this comment?')) { $.ajax({ url: '/comments/flag/', type: 'POST', data: {id: id}, dataType: 'text', success: function (response, textStatus) { alert(response); }, error: function (xhr, textStatus, ex) { alert('Oops, an error occurred: ' + xhr.statusText + ' - ' + xhr.responseText); } }); } } return false; }); $('#id_comment').markItUp(mySettings); });