summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-06-24 12:01:43 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-06-24 12:01:43 (GMT)
commit2ee2163409a20d368c351cee0649bb9c7f7600d5 (patch)
treee2070788e421be6fd171a039d1e0399471220c35 /www
parentcd15540f94bdb78556a5bd8e47df1f2919b97ac7 (diff)
remove .aac from list of allowed file extensions
Diffstat (limited to 'www')
-rw-r--r--www/js/shows.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/shows.js b/www/js/shows.js
index a08ac94..5ac6b2b 100644
--- a/www/js/shows.js
+++ b/www/js/shows.js
@@ -106,7 +106,7 @@ function shows_importCart(cart) {
$('#shows-upload-confirm').attr('disabled','disabled').unbind('click');
var dz = form.dropzone({ url: "/rd-bin/rdxport.cgi", parallelUploads: 1, maxFilesize: 2048, paramName: 'FILENAME',
uploadMultiple: false, clickable: true, createImageThumbnails: false,
- acceptedFiles: ".flac,.wav,.ogg,.mp3,.m4a,.aac", autoProcessQueue: false, init: function() {
+ acceptedFiles: ".flac,.wav,.ogg,.mp3,.m4a", autoProcessQueue: false, init: function() {
this.on("addedfile", function(file) { shows_importFileAdded(this, file, cart); });
this.on("error", function(file, msg) { shows_importFileSelectError(this, file, msg); });
}});