Browse Source

expand-video.js: works with .mp4 now as well

pull/40/head
czaks 9 years ago
parent
commit
77bec71399
  1. 4
      js/expand-video.js

4
js/expand-video.js

@ -204,13 +204,13 @@ function setupVideo(thumb, url) {
function setupVideosIn(element) { function setupVideosIn(element) {
var thumbs = element.querySelectorAll("a.file"); var thumbs = element.querySelectorAll("a.file");
for (var i = 0; i < thumbs.length; i++) { for (var i = 0; i < thumbs.length; i++) {
if (/\.webm$/.test(thumbs[i].pathname)) { if (/\.webm|\.mp4$/.test(thumbs[i].pathname)) {
setupVideo(thumbs[i], thumbs[i].href); setupVideo(thumbs[i], thumbs[i].href);
} else { } else {
var m = thumbs[i].search.match(/\bv=([^&]*)/); var m = thumbs[i].search.match(/\bv=([^&]*)/);
if (m != null) { if (m != null) {
var url = decodeURIComponent(m[1]); var url = decodeURIComponent(m[1]);
if (/\.webm$/.test(url)) setupVideo(thumbs[i], url); if (/\.webm|\.mp4$/.test(url)) setupVideo(thumbs[i], url);
} }
} }
} }

Loading…
Cancel
Save