Subversion Repositories SmartDukaan

Rev

Rev 23819 | Rev 23872 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23819 Rev 23870
Line 282... Line 282...
282
	var otherNumbers = x.substring(0,x.length-3);
282
	var otherNumbers = x.substring(0,x.length-3);
283
	if(otherNumbers != '')
283
	if(otherNumbers != '')
284
	    lastThree = ',' + lastThree;
284
	    lastThree = ',' + lastThree;
285
	return otherNumbers.replace(/\B(?=(\d{2})+(?!\d))/g, ",") + lastThree;
285
	return otherNumbers.replace(/\B(?=(\d{2})+(?!\d))/g, ",") + lastThree;
286
}
286
}
-
 
287
 
-
 
288
function dateRangeCallback(start, end) {
-
 
289
	startDate = start.format('YYYY-MM-DD');
-
 
290
	endDate = end.format('YY-MM-DD');
-
 
291
}
287
292