diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-13 07:02:51 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-13 07:02:51 +0200 |
commit | c144976676efc829b6a2e884ea2bb4d2bfebb733 (patch) | |
tree | 77b5e327bd86dfc609da6e1dd9713fd7b241bbc1 /apps/media/js | |
parent | ccf410c7b0f7f70f39c0d842c5a30df2664db0f3 (diff) | |
download | nextcloud-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.js | 4 |
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(); - }); + //}); }); |