diff media/js/comments.js @ 99:10d6182b9f6e

Forums: added error handling to the flagging of posts. Did the same with the comments function too.
author Brian Neal <bgneal@gmail.com>
date Mon, 14 Sep 2009 00:06:08 +0000
parents dbd703f7d63a
children b0d62247c3e4
line wrap: on
line diff
--- a/media/js/comments.js	Sun Sep 13 21:45:35 2009 +0000
+++ b/media/js/comments.js	Mon Sep 14 00:06:08 2009 +0000
@@ -29,9 +29,18 @@
                     'or is not appropriate. ' +
                     'A moderator will be notified and will review the comment. ' +
                     'Are you sure you want to flag this comment?')) {
-                $.post('/comments/flag/', { id : id }, function(response) {
-                    alert(response);
-                    }, 'text');
+                $.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;