Skip to content
Snippets Groups Projects
Commit e153fb79 authored by Robin Appelman's avatar Robin Appelman
Browse files

fix mysql config not showing for installation

parent ded97de8
No related branches found
No related tags found
No related merge requests found
$(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();
......@@ -35,4 +30,9 @@ $(document).ready(function() {
$('#databaseField').slideToggle(250);
}
});
// Hide the MySQL config div if needed :
if($('#dbtype').val()=='sqlite') {
$('#databaseField').hide();
}
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment