Browse Source

expand-video.js: avoid double-initialize

pull/40/head
czaks 10 years ago
parent
commit
f2b32fe3bc
  1. 3
      js/expand-video.js

3
js/expand-video.js

@ -6,6 +6,9 @@ if (typeof _ == 'undefined') {
}
function setupVideo(thumb, url) {
if (thumb.videoAlreadySetUp) return;
thumb.videoAlreadySetUp = true;
var video = null;
var videoContainer, videoHide;
var expanded = false;

Loading…
Cancel
Save