Merge pull request #6 from poblabs/adminpage

Admin Page Updates
This commit is contained in:
Christian Haschek 2019-10-03 17:04:05 +02:00 committed by GitHub
commit 5fe2418552
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View file

@ -74,7 +74,7 @@ switch($action)
}
}
if(is_array($emaillist))
ksort($emaillist);
krsort($emaillist);
$data = (count($emaillist)?$emaillist:array());
}

View file

@ -89,11 +89,16 @@ function updateEmailTable()
var admin=false;
if(data.type=="admin")
{
clearInterval(timer);
//clearInterval(timer);
admin = true;
$('#tableheader').children(':eq(1)').after('<th scope="col">To</th>');
// Do not add the To header if one with the "to" class already exists
if ( $('#tableheader').children(':eq(2)').hasClass("to") === false )
{
$('#tableheader').children(':eq(1)').after('<th scope="col" class="to">To</th>');
}
}
$("#emailtable tr").remove(); // Empty all <tr> from the table so we don't stack
if(Object.keys(data.emails).length>0)
for(em in data.emails)
{