Changeset 14584 for dojo/trunk/data/util
- Timestamp:
- 07/24/08 06:49:08 (4 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/data/util/simpleFetch.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/data/util/simpleFetch.js
r8397 r14584 47 47 48 48 var startIndex = requestObject.start?requestObject.start:0; 49 var endIndex = requestObject.count?(startIndex + requestObject.count):items.length;49 var endIndex = (requestObject.count && (requestObject.count !== Infinity))?(startIndex + requestObject.count):items.length; 50 50 51 51 requestObject.abort = function(){