20 lines
621 B
JavaScript
20 lines
621 B
JavaScript
$(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();
|
|
})
|
|
|
|
$(".SubscriptionInboxCheck").change(function(event)
|
|
{
|
|
if ( $(this).is(':checked') ) {
|
|
$(this).closest('tr').children(".NotificationOptions").css('visibility', 'visible');
|
|
} else {
|
|
$(this).closest('tr').children(".NotificationOptions").css('visibility', 'hidden');
|
|
}
|
|
});
|
|
}
|
|
);
|
|
|