[Phphtmllib-devel] SF.net SVN: phphtmllib:[3377] trunk/open2300/htdocs/js/ticker.js
Status: Beta
Brought to you by:
hemna
From: <he...@us...> - 2010-02-26 07:24:31
|
Revision: 3377 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3377&view=rev Author: hemna Date: 2010-02-26 07:24:25 +0000 (Fri, 26 Feb 2010) Log Message: ----------- fixed length access Modified Paths: -------------- trunk/open2300/htdocs/js/ticker.js Modified: trunk/open2300/htdocs/js/ticker.js =================================================================== --- trunk/open2300/htdocs/js/ticker.js 2010-02-26 07:22:43 UTC (rev 3376) +++ trunk/open2300/htdocs/js/ticker.js 2010-02-26 07:24:25 UTC (rev 3377) @@ -23,7 +23,7 @@ clength = ticker_data.middle.length; rlength = ticker_data.right.length; - if (ci >= clength) { + if (ci >= clength-1) { ci = 0; } @@ -32,7 +32,7 @@ Effect.Appear('headtopcenter', {duration: 0.5}); }}); - if (ri >= rlength) { + if (ri >= rlength-1) { ri = 0; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |