Prevent the advanced options toggle in the setup from acting as a link

This commit is contained in:
Robin Appelman 2016-06-16 15:25:56 +02:00
parent 453a038e9c
commit 8485f5bcb1
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ $(document).ready(function() {
$('input[checked]').trigger('click');
$('#showAdvanced').click(function() {
$('#showAdvanced').click(function(e) {
e.preventDefault();
$('#datadirContent').slideToggle(250);
$('#databaseBackend').slideToggle(250);
$('#databaseField').slideToggle(250);