Only show SSL table header if there are certificates
This commit is contained in:
parent
1d06d93d27
commit
d61f688126
|
@ -335,6 +335,10 @@ $(document).ready(function () {
|
||||||
cert: row.data('name')
|
cert: row.data('name')
|
||||||
});
|
});
|
||||||
row.remove();
|
row.remove();
|
||||||
|
|
||||||
|
if ($('#sslCertificate > tbody > tr').length === 0) {
|
||||||
|
$('#sslCertificate').hide();
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -362,12 +366,17 @@ $(document).ready(function () {
|
||||||
));
|
));
|
||||||
|
|
||||||
$('#sslCertificate tbody').append(row);
|
$('#sslCertificate tbody').append(row);
|
||||||
|
$('#sslCertificate').show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#rootcert_import_button').click(function () {
|
$('#rootcert_import_button').click(function () {
|
||||||
$('#rootcert_import').click();
|
$('#rootcert_import').click();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if ($('#sslCertificate > tbody > tr').length === 0) {
|
||||||
|
$('#sslCertificate').hide();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
OC.Encryption = {
|
OC.Encryption = {
|
||||||
|
|
Loading…
Reference in New Issue