[dw-free] Unsubscribe from multiple notifications
[commit: http://hg.dwscoalition.org/dw-free/rev/7bfec22ef334]
http://bugs.dwscoalition.org/show_bug.cgi?id=1683
Oops, I forgot the file!
Patch by
yvi.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1683
Oops, I forgot the file!
Patch by
Files modified:
- htdocs/js/notifications.js
--------------------------------------------------------------------------------
diff -r 187e531dbfb9 -r 7bfec22ef334 htdocs/js/notifications.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/htdocs/js/notifications.js Tue Apr 20 03:21:51 2010 -0700
@@ -0,0 +1,11 @@
+$(document).ready(function()
+{
+ $('.delete-button').click(function(event)
+ {
+ event.preventDefault();
+ $.post("/__rpc_esn_subs", {action:'delsub', subid:$(this).attr("subid"), auth_token:$(this).attr("auth_token")});
+ $(this).closest('tr').remove();
+ });
+}
+);
+
--------------------------------------------------------------------------------

no subject