admin.js 499 B

123456789101112131415161718
  1. function updateServiceStats() {
  2. $.ajax({
  3. url: '/s',
  4. success: function(result) {
  5. var data = jQuery.parseJSON(result);
  6. pageMax = Math.floor(data.total/50);
  7. if ($('#mailList')) {
  8. $('#mailList').html(data.html);
  9. }
  10. },
  11. error: function(jqXHR, textStatus, errorThrown) {
  12. if ($('#mailList')) {
  13. $('#mailList').html('Unable to load service list');
  14. }
  15. }
  16. });
  17. }