diff options
author | kondou <kondou@ts.unde.re> | 2014-03-01 02:46:27 +0100 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2014-06-02 21:09:41 +0200 |
commit | 9bc3f3cf304c300c758743f2e460beb1fee3ecac (patch) | |
tree | ea564110fcd3a28caee27af3bf36486d1783cc3e /core/js/setup.js | |
parent | c88c0b9a13231478c626296d78aac7c1f66d87d9 (diff) | |
download | nextcloud-server-9bc3f3cf304c300c758743f2e460beb1fee3ecac.tar.gz nextcloud-server-9bc3f3cf304c300c758743f2e460beb1fee3ecac.zip |
Scrutinizer cleanup
Diffstat (limited to 'core/js/setup.js')
-rw-r--r-- | core/js/setup.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/js/setup.js b/core/js/setup.js index 96719540f96..d28f15a0a03 100644 --- a/core/js/setup.js +++ b/core/js/setup.js @@ -72,7 +72,10 @@ $(document).ready(function() { $('input[type="radio"]').first().click(); } - if (currentDbType === 'sqlite' || (dbtypes.sqlite && currentDbType === undefined)){ + if ( + currentDbType === 'sqlite' || + (dbtypes.sqlite && currentDbType === undefined) + ){ $('#datadirContent').hide(250); $('#databaseBackend').hide(250); $('#databaseField').hide(250); |