12 lines
190 B
JavaScript
12 lines
190 B
JavaScript
function setAclList(programID)
|
|
{
|
|
if(programID != 0)
|
|
{
|
|
$('.aclBox').html($('#subPGMAcl').html());
|
|
}
|
|
else
|
|
{
|
|
$('.aclBox').html($('#PGMAcl').html());
|
|
}
|
|
}
|