Author: andre
Date: 2009-08-13 14:27:48 +0200 (Thu, 13 Aug 2009)
New Revision: 37780

Modified:
   openimages/trunk/src/main/webapp/style/js/play.js.jsp
Log:
seconds did not allways update



Modified: openimages/trunk/src/main/webapp/style/js/play.js.jsp
===================================================================
--- openimages/trunk/src/main/webapp/style/js/play.js.jsp       2009-08-13 
12:17:43 UTC (rev 37779)
+++ openimages/trunk/src/main/webapp/style/js/play.js.jsp       2009-08-13 
12:27:48 UTC (rev 37780)
@@ -96,7 +96,7 @@
             text = (min < 10 ? '0' + min : min) + ":" + (sec < 10 ? '0' + sec 
: sec);
             $('li#position').text(text);
         }
-        if (player.state == "play" && pos != oldpos) {
+        if (player.state == "play") {
             setTimeout(progress, 100);
         }
     };

_______________________________________________
Cvs mailing list
Cvs@lists.mmbase.org
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to