aboutsummaryrefslogtreecommitdiffstats
path: root/apps/media/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-13 07:02:51 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-13 07:02:51 +0200
commitc144976676efc829b6a2e884ea2bb4d2bfebb733 (patch)
tree77b5e327bd86dfc609da6e1dd9713fd7b241bbc1 /apps/media/js
parentccf410c7b0f7f70f39c0d842c5a30df2664db0f3 (diff)
downloadnextcloud-server-c144976676efc829b6a2e884ea2bb4d2bfebb733.tar.gz
nextcloud-server-c144976676efc829b6a2e884ea2bb4d2bfebb733.zip
start scanning music automatically when in Music
Diffstat (limited to 'apps/media/js')
-rw-r--r--apps/media/js/collection.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/media/js/collection.js b/apps/media/js/collection.js
index 8ef10951b6b..15c83b86229 100644
--- a/apps/media/js/collection.js
+++ b/apps/media/js/collection.js
@@ -244,12 +244,12 @@ $(document).ready(function(){
Collection.parent=$('#collection');
Collection.load();
Collection.parent.hide();
- $('#scan input.start').click(function(){
+ //$('#scan input.start').click(function(){
$('#scan input.start').hide();
$('#scan input.stop').show();
$('#scan input.stop').click(function(){
Scanner.toggle();
});
Scanner.scanCollection();
- });
+ //});
});