Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
die_coolen_jungs
our_own_cloud_project
Commits
8485f5bc
Commit
8485f5bc
authored
Jun 16, 2016
by
Robin Appelman
Browse files
Prevent the advanced options toggle in the setup from acting as a link
parent
453a038e
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/js/setup.js
View file @
8485f5bc
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment