Subversion Repositories JSX

Compare Revisions

Last modification

Ignore whitespace Rev 618 → Rev 617

/trunk/collection.js
253,7 → 253,10
 
/* 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")
{
301,7 → 304,10
 
/* 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")
{
348,7 → 354,10
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")
{
387,7 → 396,10
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")
{