#697 add install option
This commit is contained in:
parent
b0bf4cc1cb
commit
5f1183cecf
7 changed files with 27 additions and 6 deletions
|
@ -187,6 +187,16 @@ function initInstall() {
|
|||
$('#disable-gravatar').checkbox('check');
|
||||
}
|
||||
});
|
||||
$('#disable-registration input').change(function () {
|
||||
if ($(this).is(':checked')) {
|
||||
$('#enable-captcha').checkbox('uncheck');
|
||||
}
|
||||
});
|
||||
$('#enable-captcha input').change(function () {
|
||||
if ($(this).is(':checked')) {
|
||||
$('#disable-registration').checkbox('uncheck');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function initRepository() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue