39 lines
855 B
JavaScript
39 lines
855 B
JavaScript
$(document).ready(function() {
|
|
// Hide the MySQL config div if needed :
|
|
if(!$('#mysql').is(':checked')) {
|
|
$('#use_mysql').hide();
|
|
}
|
|
|
|
// Hide the PostgreSQL config div if needed:
|
|
if(!$('#pgsql').is(':checked')) {
|
|
$('#use_postgresql').hide();
|
|
}
|
|
|
|
$('#datadirField').hide(250);
|
|
if($('#hasSQLite').val()=='true'){
|
|
$('#databaseField').hide(250);
|
|
}
|
|
|
|
$('#sqlite').click(function() {
|
|
$('#use_mysql').slideUp(250);
|
|
$('#use_postgresql').slideUp(250);
|
|
});
|
|
|
|
$('#mysql').click(function() {
|
|
$('#use_mysql').slideDown(250);
|
|
$('#use_postgresql').slideUp(250);
|
|
});
|
|
|
|
$('#pgsql').click(function() {
|
|
$('#use_postgresql').slideDown(250);
|
|
$('#use_mysql').slideUp(250);
|
|
});
|
|
|
|
$('#showAdvanced').click(function() {
|
|
$('#datadirField').slideToggle(250);
|
|
if($('#hasSQLite').val()=='true'){
|
|
$('#databaseField').slideToggle(250);
|
|
}
|
|
});
|
|
});
|