summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-08-04 01:26:29 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-08-04 01:26:29 +0200
commit122c3a3cf8340b5737e0b954cc4fa6b2d03b68ab (patch)
treec9d9db85e2d5c9e9b78ffbd8ed96d98388c6ae8c /apps
parent93b342ee391147895b9a9aeabc0050489fc0ee02 (diff)
downloadnextcloud-server-122c3a3cf8340b5737e0b954cc4fa6b2d03b68ab.tar.gz
nextcloud-server-122c3a3cf8340b5737e0b954cc4fa6b2d03b68ab.zip
dont show confusing 'X files scanned' message when we are not scanning files
Diffstat (limited to 'apps')
-rw-r--r--apps/media/js/collection.js2
-rw-r--r--apps/media/js/scanner.js2
-rw-r--r--apps/media/templates/collection.php4
3 files changed, 5 insertions, 3 deletions
diff --git a/apps/media/js/collection.js b/apps/media/js/collection.js
index 42d249112b1..520ce7d1129 100644
--- a/apps/media/js/collection.js
+++ b/apps/media/js/collection.js
@@ -33,7 +33,7 @@ Collection={
Collection.loadedListeners[i]();
}
if(collection.length==0){
- $('#scan input.start').val('Scan');
+ $('#scan input.start').val('Scan Collection');
$('#plugins a[href="#collection"]').trigger('click');
}
diff --git a/apps/media/js/scanner.js b/apps/media/js/scanner.js
index de67c7c9931..165f86d05f5 100644
--- a/apps/media/js/scanner.js
+++ b/apps/media/js/scanner.js
@@ -50,6 +50,7 @@ Scanner={
},
start:function(ready){
Scanner.stopScanning=false;
+ $('#scancount').show();
var scanSong=function(){
Scanner.currentIndex++;
if(!Scanner.stopScanning && Scanner.currentIndex<Scanner.songs.length){
@@ -62,6 +63,7 @@ Scanner={
}
}
scanSong();
+ scanSong();
},
toggle:function(){
if(Scanner.stopScanning){
diff --git a/apps/media/templates/collection.php b/apps/media/templates/collection.php
index fe50bf5ebdf..f47cba24868 100644
--- a/apps/media/templates/collection.php
+++ b/apps/media/templates/collection.php
@@ -1,7 +1,7 @@
<div id='scan'>
- <p><span class='songCount'>0</span> Songs scanned</p>
+ <p id='scancount' style='display:none'><span class='songCount'>0</span> Songs scanned</p>
<div id="scanprogressbar"></div>
- <input type='button' class='start' value='Recan'></input>
+ <input type='button' class='start' value='Recan Collection'></input>
<input type='button' class='stop' style='display:none' value='Pause'></input>
</div>
<ul id='collection'>