diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-25 11:21:21 -0700 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-25 11:21:21 -0700 |
commit | dbb6a10364fb87989cb13f704887782a1531e16b (patch) | |
tree | 9f83bbab2345d3bdf76b6318f3f66135cdd59bce | |
parent | 0fdf3a7e635936ac0b5e66c215d1666fac5f5c32 (diff) | |
parent | 56006ea8524feb44593df26e26a8c72ecb75fadc (diff) | |
download | nextcloud-server-dbb6a10364fb87989cb13f704887782a1531e16b.tar.gz nextcloud-server-dbb6a10364fb87989cb13f704887782a1531e16b.zip |
Merge pull request #3478 from davidak/master
small typo fix: added 2 whitespaces
-rw-r--r-- | apps/files/js/files.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index a15f0588f9f..a79d34c9b23 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -708,14 +708,14 @@ function scanFiles(force, dir){ var scannerEventSource = new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force,dir:dir}); scanFiles.cancel = scannerEventSource.close.bind(scannerEventSource); scannerEventSource.listen('count',function(count){ - console.log(count + 'files scanned') + console.log(count + ' files scanned') }); scannerEventSource.listen('folder',function(path){ console.log('now scanning ' + path) }); scannerEventSource.listen('done',function(count){ scanFiles.scanning=false; - console.log('done after ' + count + 'files'); + console.log('done after ' + count + ' files'); }); } scanFiles.scanning=false; |