[xiph-commits] r17417 - websites/xiph.org/video

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Wed Sep 22 00:52:44 PDT 2010


Author: xiphmont
Date: 2010-09-22 00:52:44 -0700 (Wed, 22 Sep 2010)
New Revision: 17417

Modified:
   websites/xiph.org/video/video.js
Log:
Correcta  load race that probably doesn't actually exist.



Modified: websites/xiph.org/video/video.js
===================================================================
--- websites/xiph.org/video/video.js	2010-09-22 06:46:13 UTC (rev 17416)
+++ websites/xiph.org/video/video.js	2010-09-22 07:52:44 UTC (rev 17417)
@@ -119,8 +119,6 @@
         if(vidtype)$(vidtype).html("Ogg");
     }
 
-    video.load();
-
     // Remove the poster once playback is in progress, as some
     // browsers keep popping it back up at annoying times, like when
     // playback stutters or during seeking.
@@ -163,6 +161,8 @@
         srt_wrapper.style.width = vid_width;
         srt_wrapper.style.bottom = bottom;
     }
+    video.load();
+
 }
 
 // Show/hide our upper control toolbar according to mouseover



More information about the commits mailing list