Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0900ef0

Browse files
author
Alex Good
committedJan 12, 2017
Fix bad var declaration in src/InfiniteList.js
1 parent 57c9d7b commit 0900ef0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/InfiniteList.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var VerticalScroller = require('./VerticalScroller'),
22
ScrollbarRenderer = require('./ScrollbarRenderer'),
33
AnimationFrameHelper = require('./AnimationFrameHelper'),
44
ListItemsRenderer = require('./ListItemsRenderer'),
5-
StyleHelpers = require('./StyleHelpers');
5+
StyleHelpers = require('./StyleHelpers'),
66
DEFAULT_ITEM_HEIGHT = 2;
77

88
var InfiniteList = function (listConfig) {
@@ -261,4 +261,4 @@ var InfiniteList = function (listConfig) {
261261

262262
};
263263

264-
module.exports = InfiniteList;
264+
module.exports = InfiniteList;

0 commit comments

Comments
 (0)
Please sign in to comment.