Merge pull request #644 from feross/dc/ux

Support .wmv video via VLC
This commit is contained in:
Feross Aboukhadijeh 2016-06-15 16:35:12 -07:00 committed by GitHub
commit 98389fc07c

View file

@ -24,7 +24,8 @@ function isVideo (file) {
'.mp4',
'.mpg',
'.ogv',
'.webm'
'.webm',
'.wmv'
].includes(ext)
}