diff options
Diffstat (limited to 'public/assets/js/lib/views/details')
| -rw-r--r-- | public/assets/js/lib/views/details/audio.js | 2 | ||||
| -rw-r--r-- | public/assets/js/lib/views/details/files.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/public/assets/js/lib/views/details/audio.js b/public/assets/js/lib/views/details/audio.js index 3fa0b70..b03fa81 100644 --- a/public/assets/js/lib/views/details/audio.js +++ b/public/assets/js/lib/views/details/audio.js @@ -17,7 +17,7 @@ var audio = (function(){ music = [] var links = document.querySelectorAll("a") Array.prototype.slice.apply(links).forEach(function(link){ - if (! link.href.match(/\.(mp3|wav|ogg|opus)$/)) return + if (! link.href.match(/\.(mp3|wav|ogg|opus|flac)$/)) return link.dataset.index = music.length music.push(link) if (playing && link.href === el.src) { diff --git a/public/assets/js/lib/views/details/files.js b/public/assets/js/lib/views/details/files.js index cdefc1f..3cfd1c9 100644 --- a/public/assets/js/lib/views/details/files.js +++ b/public/assets/js/lib/views/details/files.js @@ -26,7 +26,7 @@ var FilesView = FormView.extend({ // return } total += file.size - has_music = has_music || file.filename.match(/(mp3|wav|ogg|opus)$/i) + has_music = has_music || file.filename.match(/(mp3|wav|ogg|opus|flac)$/i) }.bind(this)) this.total = total @@ -175,7 +175,7 @@ var FilesView = FormView.extend({ pick: function(e){ if (e.ctrlKey || e.altKey || e.metaKey || e.shiftKey) return - if (! e.target.href || ! e.target.href.match(/(mp3|wav|ogg|opus)$/i)) return + if (! e.target.href || ! e.target.href.match(/(mp3|wav|ogg|opus|flac)$/i)) return e.preventDefault() audio.play( e.target.dataset.index ) // index set in audio.js }, |
