mangadex/scripts/js/messages.req.js

18 lines
440 B
JavaScript
Raw Permalink Normal View History

2021-03-14 17:31:55 -04:00
<?php
if ($user->user_id) {
print jquery_post("msg_del", 0, "trash", "Delete", "Deleting", "Your message(s) have been deleted.", "location.reload();");
if ($mode == 'deleted') {
?>
$('#inbox').removeClass('active');
$('#bin').addClass('active');
<?php
}
print display_js_posting();
print jquery_post("msg_send", 0, "pencil-alt", "Send", "Sending", "Your message has been sent.", "location.href = '/messages';");
} ?>