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

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

parent 453a038e
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
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