Subversion Repositories JSX

Compare Revisions

Last modification

Ignore whitespace Rev 617 → Rev 618

/trunk/collection.js
253,10 → 253,7
 
/* start from next possible item */
/* run through only one time */
while (--i > -1 && typeof t[i] == "undefined")
{
;
}
while (--i > -1 && typeof t[i] == "undefined");
 
if (typeof t[i] != "undefined")
{
304,10 → 301,7
 
/* start from next possible item */
/* run through only one time */
while (++i < t.length && typeof t[i] == "undefined")
{
;
}
while (++i < t.length && typeof t[i] == "undefined");
 
if (typeof t[i] != "undefined")
{
354,10 → 348,7
var i = this.currItem;
 
/* run through only one time */
while (--i > -1 && typeof t[i] == "undefined")
{
;
}
while (--i > -1 && typeof t[i] == "undefined");
 
if (typeof t[i] != "undefined")
{
396,10 → 387,7
var i = this.currItem;
 
/* run through only one time */
while (++i < t.length && typeof t[i] == "undefined")
{
;
}
while (++i < t.length && typeof t[i] == "undefined");
 
if (typeof t[i] != "undefined")
{