diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-04-24 23:56:51 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-04-25 00:12:12 +0200 |
commit | fa502e160df470ffa2ab02d6a8e9e8a0d4f6f0f4 (patch) | |
tree | 9ef38fc61f15093744a48a5c3985c3db9bd92c37 /files/js | |
parent | 9b134b063683aca678e19912ebc3928321751714 (diff) | |
download | nextcloud-server-fa502e160df470ffa2ab02d6a8e9e8a0d4f6f0f4.tar.gz nextcloud-server-fa502e160df470ffa2ab02d6a8e9e8a0d4f6f0f4.zip |
allow manually scanning of specific directories
Diffstat (limited to 'files/js')
-rw-r--r-- | files/js/files.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/js/files.js b/files/js/files.js index 3ce95f992d0..73a16100a69 100644 --- a/files/js/files.js +++ b/files/js/files.js @@ -370,12 +370,12 @@ $(document).ready(function() { }, "json"); }); -function scanFiles(force){ +function scanFiles(force,dir){ force=!!force; //cast to bool scanFiles.scanning=true; $('#scanning-message').show(); $('#fileList').remove(); - var scannerEventSource=new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force}); + var scannerEventSource=new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force,dir:dir}); scanFiles.cancel=scannerEventSource.close.bind(scannerEventSource); scannerEventSource.listen('scanning',function(data){ $('#scan-count').text(data.count+' files scanned'); |