Commit 3c6284366ca4f1691caf0a7981fb505b15afbed0
1 parent
7e1a8498
Exists in
master
and in
1 other branch
Inclusão do formato TS nos tipos de vídeos aceitos
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/assets/javascripts/site/videos.js
... | ... | @@ -8,7 +8,7 @@ function check_subtitle(file) { |
8 | 8 | }; |
9 | 9 | |
10 | 10 | function check_video(file) { |
11 | - var accepted_file_types = ["avi", "mp4", "mov", "webm", "wmv", "mkv",]; | |
11 | + var accepted_file_types = ["ts", "avi", "mp4", "mov", "webm", "wmv", "mkv",]; | |
12 | 12 | return check_type(file, accepted_file_types) |
13 | 13 | }; |
14 | 14 | ... | ... |