Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion react-list.es6
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const OFFSET_START_KEYS = { x: 'offsetLeft', y: 'offsetTop' };
const OVERFLOW_KEYS = { x: 'overflowX', y: 'overflowY' };
const SCROLL_SIZE_KEYS = { x: 'scrollWidth', y: 'scrollHeight' };
const SCROLL_START_KEYS = { x: 'scrollLeft', y: 'scrollTop' };
const SIZE_KEYS = { x: 'width', y: 'height' };
const SIZE_KEYS = { x: 'minWidth', y: 'minHeight' };

const NOOP = () => {};

Expand Down
4 changes: 2 additions & 2 deletions react-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
y: 'scrollTop'
};
var SIZE_KEYS = {
x: 'width',
y: 'height'
x: 'minWidth',
y: 'minHeight'
};

var NOOP = function NOOP() {}; // If a browser doesn't support the `options` argument to
Expand Down