diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-21 09:42:19 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-21 09:42:19 +0100 |
commit | b22d82f941d29157d659ec29689c75a8b53a530c (patch) | |
tree | 380f54f97598a9e8d2e59130fa5c9d303d5c10d4 /apps/files | |
parent | 658758c3f7e0f18a37c00ce107c8d3b4917183e0 (diff) | |
download | nextcloud-server-b22d82f941d29157d659ec29689c75a8b53a530c.tar.gz nextcloud-server-b22d82f941d29157d659ec29689c75a8b53a530c.zip |
code style: else on same line
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 2dacabaa9d6..35fbdeecd39 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -25,8 +25,7 @@ window.FileList={ setPageTitle: function(title){ if (title) { title += ' - '; - } - else { + } else { title = ''; } title += FileList.appName; |